Join over 55,891 Subscribers Today! FREE UPDATES!
Get The Only Freelancer crash course you will ever need to read!
CSS is no doubt up there with the most important web languages that we use. While html provides the structure it can be inconsistent and unpredictable across different new and old browsers. Css is where the html is styled though, and where we get creative as well as addressing those inconsistencies. Below is a fantastic list of 25 Css snippets that I am sure you will find extremely useful. Whether you are a veteran web developer, or are just getting your foot in the door of css, they are all well worth checking out.
This is extremely useful for use for things such as your company logo. More often than not, it’s an image, but you’ll want to display it in h1 tags for SEO as well. Here’s the best way to do so. What we basically do is hide the text far away off the screen, and apply a background image instead.
h1 {
text-indent:-9999px;
margin:0 auto;
width:400px;
height:100px;
background:transparent url("images/logo.jpg") no-repeat scroll;
}
This snippet is aimed at user experience. Often on the internet we find ourself clicking on links knowing nothing about where we are heading. This snippet can be used and expanded to show small icons next to your links telling the user if it is an external link, an email, a pdf, an image, and so much more.
/* external links */
a[href^="http://"]{
padding-right: 20px;
background: url(external.gif) no-repeat center right;
}
/* emails */
a[href^="mailto:"]{
padding-right: 20px;
background: url(email.png) no-repeat center right;
}
/* pdfs */
a[href$=".pdf"]{
padding-right: 20px;
background: url(pdf.png) no-repeat center right;
}
Internet Explorer has an annoying habit of adding scrollbars to textarea’s even when the textarea’s content is not overflowing. You can rectify this flaw with this easy to use snippet.
textarea{
overflow:auto;
}
Commonplace these days in blogs and news sites is the dropcap. You’d be surprised at how easy it is to implement, and how well it degrades for older browsers.
p:first-letter{
display:block;
margin:5px 0 0 5px;
float:left;
color:#FF3366;
font-size:60px;
font-family:Georgia;
}
Transparency is something that isn’t done the same way across browsers which can be annoying. Here’s how you can target transparency in multiple browsers.
.transparent {
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
Eric Meyer’s css reset has become almost standard now days for use at the start of your stylesheet. Having been adopted by some of the most influential designers, you can be sure of its quality.
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
/* remember to define focus styles! */
:focus {
outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
text-decoration: none;
}
del {
text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
border-collapse: collapse;
border-spacing: 0;
}
Sometimes it is useful to pre-load your images so that when a certain element is needed, they’ll already be loaded for you and there wont be any delay or flickering.
div.loader{
background:url(images/hover.gif) no-repeat;
background:url(images/hover2.gif) no-repeat;
background:url(images/hover3.gif) no-repeat;
margin-left:-10000px;
}
Having a button or link with a background image is fairly normal, and nowadays, we require further effects to enhance the user experience. Once of this is an indicator to the user that they are hovering over a button. Using a sprite, we can create this effect by changing the position of the background image down a certain height to show the background to the button on hover. A simple yet effective technique.
a {
display: block;
background: url(sprite.png) no-repeat;
height: 30px;
width: 250px;
}
a:hover {
background-position: 0 -30px;
}
Google recently released a fantastic resource for web designers allowing them to load new fonts from google for use in our web pages. We can even load different variants of fonts such as bold, italic and so on. While the library of fonts available from google is limited, there is still plenty to use. First include the dynamically written stylesheet by naming the fonts and variants you want, and then use the font names in your css as you normally would! For further info on Google Font API, read here.
<head> Inconsolata:italic|Droid+Sans"> </head>
body {
font-family: 'Tangerine', 'Inconsolata', 'Droid Sans', serif; font-size: 48px;
}
Sometimes it’s useful to target specific browsers to fix their inconsistencies and conditional comments aren’t always the best way to do so. This list of css browser hacks by Chris Coyier is a top-notch list of ways to target browsers with simple css.
/* IE 6 */
* html .yourclass { }
/* IE 7 */
*+html .yourclass{ }
/* IE 7 and modern browsers */
html>body .yourclass { }
/* Modern browsers (not IE 7) */
html>/**/body .yourclass { }
/* Opera 9.27 and below */
html:first-child .yourclass { }
/* Safari */
html[xmlns*=""] body:last-child .yourclass { }
/* Safari 3+, Chrome 1+, Opera 9+, Fx 3.5+ */
body:nth-of-type(1) .yourclass { }
/* Safari 3+, Chrome 1+, Opera 9+, Fx 3.5+ */
body:first-of-type .yourclass { }
/* Safari 3+, Chrome 1+ */
@media screen and (-webkit-min-device-pixel-ratio:0) {
.yourclass { }
}
You would think creating a footer that sticks to the bottom of the screen would be rather hard, but surprisingly it isn’t if you want to start with a basic footer. There is an IE6 hack we have to use, but apart from that, it’s easy!
#footer {
position:fixed;
left:0px;
bottom:0px;
height:30px;
width:100%;
background:#999;
}
/* IE 6 */
* html #footer {
position:absolute;
top:expression((0-(footer.offsetHeight)+(document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop))+'px');
}
Flipping an image rather than just loading a new image that is already reversed can be rather useful. Say you want to use only one image for an arrow, but have several on the page going in different directions. Here’s your problem solved.
img.flip {
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
A while back, someone decided it was time to clear floated elements without adding any extra markup to the document. They did this by creating a class that can be applied to the container of floated children to clear it. A fantastic way to do so, and something that is nowadays, widely used.
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */
With the slow introduction of css3, rounded corners have been made easily possibly in modern browsers. Sadly we still don’t have css3 support for IE, but it will be available in IE9 whenever that is released.
.round{
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px; /* future proofing */
-khtml-border-radius: 10px; /* for old Konqueror browsers */
}
It still surprises me that some people don’t know about !important in css, because it is such a powerful and useful tool to have. Basically, any rule with !important at the end, will override any of the same rule that is applied to that element wherever it appears in the css file, or in-line html.
p{
font-size:20px !important;
}
Font-face didn’t really break through until late last year, but has been around since the days of IE6 being a modern browser! It’s picked up in support a lot now though, and offers a great way to use non web safe fonts in your web projects. While this snippet works, you might as well save your time by using the Font Squirrel Font Face Generator.
@font-face {
font-family: 'Graublau Web';
src: url('GraublauWeb.eot');
src: local('☺'),
url('GraublauWeb.woff') format('woff'), url('GraublauWeb.ttf') format('truetype');
}
A common design trend these days is for your website to center itself in the middle of browser’s viewport horizontally. This is an easily achievable thing to do.
.wrapper {
width:960px;
margin:0 auto;
}
This comes down to fixing a simple, yet annoying bug in IE’s capability of handling min-height. In essence, IE interprets height as min-height, so since IE wont implement the auto height, this snippet will fix all this for us.
.box {
min-height:500px;
height:auto !important;
height:500px;
}
This image loading effects mimics that of an ajax loader, where a loading circle is displayed while content loads. This works especially well for larger, slower loading images, and is css only!
img {
background: url(loader.gif) no−repeat 50% 50%;
}
This short snippet allows you to vertically center the contents of a container without any extra markup by simply displaying it as a table cell which then allows you to use the vertical-align attribute.
.container {
min-height: 10em;
display: table-cell;
vertical-align: middle;
}
Firstly, what is a pullquote? Well in news and magazine style websites, you’ll often notice small quotes added within the article, not as full blockquotes, but as small quotes that sit within the article but to the side, sometimes adding things such as people’s opinions or quotes. They are extremely easy to create you’ll be glad to know, and when used properly, can add greatly to the user experience when reading an article.
.pullquote {
width: 300px;
float: right;
margin: 5px;
font-family: Georgia, "Times New Roman", Times, serif;
font: italic bold #ff0000 ;
}
Some people are unaware that it is possible to change the color when you highlight text in your browser. It is so easy to with two selectors; just be careful you don’t ruin your site with it.
::selection {
color: #000000;
background-color: #FF0000;
}
::-moz-selection {
color: #000000;
background: #FF0000;
}
This add’s again to the user experience when printing. For example, when printing an article, it may be useful for a user to have the comments on a new page from the article itself. by adding this class to the comments area, a page break will appear when printing. It can be used anywhere else on your site as well!
.page-break{
page-break-before:always;
}
I know for sure I haven’t been able to cover every useful css snippet out there, but have provided those that I think will benefit the most. What do you think about these snippets, and what do you think about others that are out there? If you know of some mighty useful css snippets, then bring them to the table in the comments, so we can see and discuss them!
Get The Only Freelancer crash course you will ever need to read!
Matt is an 18 year old web designer from Scotland, UK. He loves creating beautiful websites across different platforms. High on his things to learn fully are Jquery and php. He is extremely excited by css3 and html5 and can't wait to see them rolled out fully. To learn more about Matt, follow him @QwibbleDesigns, or check out his portfolio.
Wednesday, November 9th, 2011 14:03
i always get stuck in some css issues that gets solved after some research but after reading this post looks like i won’t need to search for typical css issues that i always face. Thanks…
Thursday, August 11th, 2011 18:16
These are nice snips if you understand them, if you resort to copy-paste then you are in trouble.
+ for collecting them
- for not explaining them
Tuesday, June 14th, 2011 08:36
Supper article. i will use this content to train my buddies. I’m very lazzy css coder i do find things like this but never try to collect it. thanks for collecting this important css code parts and publishing it.
Friday, February 25th, 2011 14:36
Excellent post for UX Team
Monday, December 27th, 2010 08:53
In your “Google Font API” snippet, something is wrong, ou have a “> without a start…
Sunday, October 31st, 2010 05:30
First: Good post.. i want to translate and post on my blog can i ?
Second: What is the name of this plugin that shows how many times this post have been digg, or re-tweet. ?
Friday, September 10th, 2010 12:46
Bravo, Matthew! Great little encyclopedia of CSS-snippets for everyone who build sites.
Looking forward your the next articles about CSS and other useful things!
Thank you!
Wednesday, September 1st, 2010 02:36
man, the vertical align snippet is totally a lifesaver – thank you!!
Wednesday, August 25th, 2010 00:05
I learned many things, really thanks!
Saturday, August 21st, 2010 23:23
Thanks for the list!! I have a question though – I really want to use the rounded corners snippet, but how do I use it? I copied and pasted the code you provided into a stylesheet and then tried assigning both the class “round” and the id “round” to different elements in my html page but it didn’t have any effect….any ideas?? thanks!
Tuesday, August 17th, 2010 00:43
I have a question, why you wanna hide text from h1?
text-indent:-9999px
What is the point, to hide it? I think you can have logo and also text, which is best for SEO, or not?
Look at my website, http://www.faiby.com
all h2 tags are made with logo on the background and text is indented just a little, from logo, to be seen.
Thx for responces.
Thursday, August 12th, 2010 14:47
Matt, great list that is very useful. Few snippets listed that are an automatic inclusion in all new development/projects.
Tuesday, August 10th, 2010 14:44
In some older browsers the wrapper’s parentNode for a centered website requires to be text-align: center; e.g.
…
Tuesday, August 10th, 2010 10:31
Nice list !!!
Thanks
Tuesday, August 10th, 2010 09:53
Great post! Behold the power of css! Learnt great new simple useful stuff. Bookmarked on delicious!
If not, then it's time to learn how to:
You can trust 1stWebDesigner to help you become a better web designer!
- Jacob Cass | Just Creative
Just enter your name and email below and click Get Updates!
Milos Milikic
Friday, August 6th, 2010 23:09
Nice list of tricks, will be useful. Thanks.
Hanibaal Diab
Monday, August 9th, 2010 06:30
Thanks :)
learning something new every day!
Danny Baggs
Monday, August 9th, 2010 06:25
Thanks for bringing these together. Very useful to confirm the techniques I’m already using and some great new ones I had no idea about.
Gary Whipple
Monday, August 9th, 2010 03:41
Thanks a lot this helped me out! I appreciate this. I’m just glad someone has some wisdom with css.
Thanks again, Gary Great Article
Joydeep Deb
Monday, August 9th, 2010 07:41
I liked all the CSS you listed Matt they are awesome.
Some how I didn’t like the 1st one ‘Hide text with text indent’, as search engines can consider it SPAM (its just an alternative like hiding text with same background color)
Rest all the CSS are very useful and helpful.
@joydeep7
Chris
Monday, August 9th, 2010 12:06
Very nice and usefull, big thx for this
Mario Cortez
Monday, August 9th, 2010 09:25
great collection thanks for sharing!!!
Andy Carter
Monday, August 9th, 2010 14:23
Some great tips here, thanks for sharing. It’s worth noting that when you’re applying CSS effects to :hover states it’s worth remembering to also apply the effect to the :focus state too. This is particularly valuable when using a reset stylesheet as the outline around focused links is often removed. Not great for those having to use a keyboard for navigation.
mak kumar
Monday, August 9th, 2010 14:13
Great Collection!!
But i have request to you, whenever you post more tutorial or article please so upload their example too..
vinay
Monday, August 9th, 2010 13:08
great collection… dude.. thanks for share.. really very useful for developers…
erwinbatucan
Sunday, August 8th, 2010 20:59
still a newbie on xhtml and css. this will be very helpful.
thanks for sharing, its straight to the point and an easy read
azuza
Monday, August 9th, 2010 00:15
Instead of using text-indent to hide text and show an image you can wrap the text you want to hide in a span tag and just mark that selector span {display: none;}
Tom Girling
Saturday, August 7th, 2010 10:12
Thats a great collection of snippets – I knew of most of them already, but there are a couple that I hadn’t seen before…thanks.
Mark Behlen
Saturday, August 7th, 2010 04:36
Great article. I learned several things from it. Thank you!
Mini0n
Friday, August 6th, 2010 23:56
Nice tips! Thanks!
Ingnu
Friday, August 6th, 2010 23:52
Very nice pieces of code. Simple, efficient, I put a link on my own blog :)
ximi
Saturday, August 7th, 2010 11:34
Some very nice tips there. The use of many of them should even be common practice! Really loved the css image preloader…