Smashing Magazine - we smash you with the information that will make your life easier. really.
Mastering CSS Coding: Getting Started
astering CSS Coding: Getting Started (via @smashingmag) -
CSS has become the standard for building websites in today’s industry. Whether you are a hardcore developer or designer, you should be familiar with it. CSS is the bridge between programming and design, and any Web professional must have some general knowledge of it. If you are getting your feet wet with CSS, this is the perfect time to fire up your favorite text editor and follow along in this tutorial as we cover the most common and practical uses of CSS.
Overview: What We Will Cover Today
We’ll start with what you could call the fundamental properties and capabilities of CSS, ones that we commonly use to build CSS-based websites:
Once you are comfortable with the basics, we will kick it up a notch with some neat tricks to build your CSS website from scratch and make some enhancements to it.
1. Padding vs. Margin
Most beginners get padding and margins mixed up and use them incorrectly. Practices such as using the height to create padding or margins also lead to bugs and inconsistencies. Understanding padding and margins is fundamental to using CSS.
What Is Padding and Margin?
Padding is the inner space of an element, and margin is the outer space of an element.
The difference becomes clear once you apply backgrounds and borders to an element. Unlike padding, margins are not covered by either the background or border because they are the space outside of the actual element.
Take a look at the visual below:


Margin and padding values are set clockwise, starting from the top.
Practical example: Here is an <h2> heading between two paragraphs. As you can see, the margin creates white space between the paragraphs, and the padding (where you see the background gray color) gives it some breathing room.

Margin and Padding Values
In the above example of the heading, the values for the margin and padding would be:
margin: 15px 0 15px 0; padding: 15px 15px 15px 15px;
To optimize this line of code further, we use an optimization technique called “shorthand,” which cuts down on repetitive code. Applying the shorthand technique would slim the code down to this:
margin: 15px 0; /*--top and bottom = 15px | right and left = 0 --*/ padding: 15px; /*--top, right, bottom and left = 15px --*/
Here is what the complete CSS would look like for this heading:
h2 {
background: #f0f0f0;
border: 1px solid #ddd;
margin: 15px 0;
padding: 15px;
}Quick Tip
Keep in mind that padding adds to the total width of your element. For example, if you had specified that the element should be 100 pixels wide, and you had a left and right padding of 10 pixels, then you would end up with 120 pixels in total.
100px (content) + 10px (left padding) + 10px (right padding) = 120px (total width of element)
Margin, however, expands the box model but does not directly affect the element itself. This tip is especially handy when lining up columns in a layout!
Additional resources:
- Box Model
- Margins and Padding
- The Definitive Guide to Using Negative Margins
- CSS Shorthand Guide
- CSS Margin
- CSS Padding
2. Floats
Floats are a fundamental element in building CSS-based websites and can be used to align images and build layouts and columns. If you recall how to align elements left and right in HTML, floating works in a similar way.
According to HTML Dog, the float property “specifies whether a fixed-width box should float, shifting it to the right or left, with surrounding content flowing around it.”

The float: left value aligns elements to the left and can also be used as a solid container to create layouts and columns. Let’s look at a practical situation in which you can use float: left.

The float: right value aligns elements to the right, with surrounding elements flowing to the left.
Quick tip: Because block elements typically span 100% of their parent container’s width, floating an element to the right knocks it down to the next line. This also applies to plain text that runs next to it because the floated element cannot squeeze in the same line.

You can correct this issue in one of two ways:
- Reverse the order of the HTML markup so that you call the floated element first, and the neighboring element second.

- Specify an exact width for the neighboring element so that when the two elements sit side by side, their combined width is less than or equal to the width of their parent container.

Internet Explorer 6 (IE6) has been known to double a floated element’s margin. So, what you originally specified as a 5-pixel margin becomes 10 pixels in IE6.

A simple trick to get around this bug is to add display: inline to your floated element, like so:
.floated_element {
float: left;
width: 200px;
margin: 5px;
display: inline; /*--IE6 workaround--*/
}Additional resources:
- Floatutorial
- Clearing Floats
- CSS Float Theory: Things You Should Know
- CSS-Tricks: All About Floats
- Containing Floats
- W3Schools: Clear
- W3Schools: Float
3. Center Alignment
The days of using the <center> HTML tag are long gone. Let’s look at the various ways of center-aligning an element.
Horizontal Alignment
You can horizontally align text elements using the text-align property. This is quite simple to do, but keep in mind when center-aligning inline elements that you must add display: block. This allows the browser to determine the boundaries on which to base its alignment of your element.
.center {
text-align: center;
display: block; /*--For inline elements only--*/
}To horizontally align non-textual elements, use the margin property.
The W3C says, “If both margin-left and margin-right are auto, their used values are equal. This horizontally centers the element with respect to the edges of the containing block.”
Horizontal alignment can be achieved, then, by setting the left and right margins to auto. This is an ideal method of horizontally aligning non-text-based elements; for example, layouts and images. But when center-aligning a layout or element without a specified width, you must specify a width in order for this to work.
To center-align a layout:
.layout_container {
margin: 0 auto;
width: 960px;
}To center-align an image:
img.center {
margin: 0 auto;
display: block; /*--Since IMG is an inline element--*/
}Vertical Alignment
You can vertically align text-based elements using the line-height property, which specifies the amount of vertical space between lines of text. This is ideal for vertically aligning headings and other text-based elements. Simply match the line-height with the height of the element.

h1 {
font-size: 3em;
height: 100px;
line-height: 100px;
}To vertically align non-textual elements, use absolute positioning.
The trick with this technique is that you must specify the exact height and width of the centered element.
With the position: absolute property, an element is positioned according to its base position (0,0: the top-left corner). In the image below, the red point indicates the 0,0 base of the element, before a negative margin is applied.
By applying negative top and left margins, we can now perfectly align this element both vertically and horizontally.

Here is the complete CSS for horizontal and vertical alignment:
.vertical {
width: 600px; /*--Specify Width--*/
height: 300px; /*--Specify Height--*/
position: absolute; /*--Set positioning to absolute--*/
top: 50%; /*--Set top coordinate to 50%--*/
left: 50%; /*--Set left coordinate to 50%--*/
margin: -150px 0 0 -300px; /*--Set negative top/left margin--*/
}Related articles:
- Vertical Centering With CSS
- Centering Things
- CSS Centering 101
- CSS Centering: Fun for All!
- Two Simple Ways to Vertically Align with CSS
4. Ordered vs. Unordered Lists
An ordered list, <ol>, is a list whose items are marked with numbers.
An unordered list, <ul>, is a list whose items are marked with bullets.
By default, both of these list item styles are plain and simple. But with the help of CSS, you can easily customize them.
To keep the code semantic, lists should be used only for content that is itemized in a list-like fashion. But they can be extended to create multiple columns and navigation menus.
Customizing Unordered Lists
Plain bullets are dull and may not draw enough attention to the content they accompany. You can fix this with a simple yet effective technique: remove the default bullets and apply a background image to each list item.
Here is the CSS for custom bullets:
ul.product_checklist {
list-style: none; /*--Takes out the default bullets--*/
margin: 0;
padding: 0;
}
ul.product_checklist li {
padding: 5px 5px 5px 25px; /*--Adds padding around each item--*/
margin: 0;
background: url(icon_checklist.gif) no-repeat left center; /*--Adds a bullet icon as a background image--*/
}
Resources for list items:
- CSS-Styled Lists: 20+ Demos, Tutorials and Best Practices
- Style Your Ordered List
- CSS Design: Taming Lists
Using Unordered Lists for Navigation
Most CSS-based navigation menus are now built as lists. Here is a breakdown of how to turn an ordinary list into a horizontal navigation menu.
HTML: begin with a simple unordered list, with links for each list item.
<ul id="topnav"> <li><a href="#">Home</a></li> <li><a href="#">Services</a></li> <li><a href="#">Portfolio</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> </ul>
CSS: we remove the default bullets (as we did when we made custom bullets) by specifying list-style: none. Then, we float each list item to the left so that the navigation menu appears horizontal, flowing from left to right.
ul#topnav {
list-style: none;
float: left;
width: 960px;
margin: 0; padding: 0;
background: #f0f0f0;
border: 1px solid #ddd;
}
ul#topnav li {
float: left;
margin: 0; padding: 0;
border-right: 1px solid #ddd;
}
ul#topnav li a {
float: left;
display: block;
padding: 10px;
color: #333;
text-decoration: none;
}
ul#topnav li a:hover {
background: #fff;
}Additional resources:
- CSS-Based Navigation Menus: Modern Solutions
- 30 Exceptional CSS Navigation Techniques
- Using CSS and Unordered List Items to Do Just About Anything
- Nifty Navigation Tricks Using CSS
- Centering List Items Horizontally
- Digg-Like Navigation Bar Using CSS
5. Styling Headings
The heading HTML tag is important for SEO. But regular headings can look dull. Why not spice them up with CSS and enjoy the best of both worlds?
Once you have the main styling properties set for your headings, you can now nest inline elements to target specific text for extra styling.

Your HTML would look like this:
<h1><span>CSS</span> Back to Basics <small>Tips, Tricks, & Practical Uses of CSS</small></h1>
And your CSS would look like this:
h1 {
font: normal 5.2em Georgia, "Times New Roman", Times, serif;
margin: 0 0 20px;
padding: 10px 0;
font-weight: normal;
text-align: center;
text-shadow: 1px 1px 1px #ccc; /*--Not supported by IE--*/
}
h1 span {
color: #cc0000;
font-weight: bold;
}
h1 small {
font-size: 0.35em;
text-transform: uppercase;
color: #999;
font-family: Arial, Helvetica, sans-serif;
text-shadow: none;
display: block; /*--Keeps the small tag on its own line--*/
}Additional typography-related resources:
- 10 Examples of Beautiful CSS Typography, and How They Did It
- 12 CSS Tools and Tutorials for Beautiful Web Typography
- CSS Gradient Text Effect
- 50 Useful Design Tools For Beautiful Web Typography
- 6 Ways to Improve Your Web Typography
- CSS Typography: Contrast Techniques, Tutorials and Best Practices
- 8 Simple Ways to Improve Typography in Your Designs
- How to Size Text in CSS
6. Overflow
The overflow property can be used in various ways and is one of the most useful properties in the CSS arsenal.
What Is Overflow?
According to W3Schools.com, “the overflow property specifies what happens if content overflows an element’s box.”
Take a look at the following examples to see how this works.
Visually, overflow: auto looks like an iframe but is much more useful and SEO-friendly. It automatically adds a scroll bar (horizontal, vertical or both) when the content within an element exceeds the element’s box or boundary.
The overflow: scroll property works the same but forces a scroll bar to appear regardless of whether or not the content exceeds the element’s boundary.
And the overflow: hidden property masks or hides an element’s content if it exceeds the element’s boundary.
Quick tip: have you ever had a parent element that did not fully wrap around its child element? You can fix this by making the parent container a floated element.
In some cases, though, floating left or right is not a workable solution — for example, if you want to center-align the container or do not want to specify an exact width. In this case, use overflow: hidden on your parent container to completely wrap any floated child elements within it.
Additional resources:
- HTML Dog: Overflow
- W3Schools: Overflow
- CSS Globe: Create Resizing Thumbnails
- CSS-Tricks: CSS Overflow Breakdown
7. Position
Positioning (relative, absolute and fixed) is one of the most powerful properties in CSS. It allows you to position an element using exact coordinates, giving you the freedom and creativity to design out of the box.
You have to do three basic things when using positioning:
- Set the coordinates (i.e. define the positioning of the x and y coordinates).
- Choose the right value for the situation: relative, absolute, fixed or static.
- Set a value for the z-index property: to layer elements (optional).
With position: relative, an element is placed in its natural position. For example, if a relatively positioned element sits to the left of an image, setting the top and left coordinates to 10px would move the element just 10 pixels from the top and 10 pixels from the left of that exact spot.
Relative positioning is also commonly used to define the new point of origin (the x and y coordinates) of absolutely positioned nested elements. By default, the base position of every element is the top-left corner (0,0) of the browser’s view port. When you give an element relative positioning, then the base position of any child elements with absolute positioning will be positioned relative to their parent element — i.e. 0,0 is now the top-left corner of the parent element, not the browser’s view port.

An element with a value of position: absolute can be placed anywhere using x and y coordinates. By default, its base position (0,0) is the top-left corner of the browser’s view port. It ignores all natural flow rules and is not affected by surrounding elements.
The base position of an element with a position: fixed value is also the top-left corner of the browser’s view port. The difference with fixed positioning is that the element will be fixed to its location and remain in view even when the user scrolls up or down.
The z-index property specifies the stack order of an element. The higher the value, the higher the element will appear.
Think of z-index stacking as layering. Check out the image below for an example:

Additional resources:
- W3Schools: CSS Positioning
- CSS-Tricks: Absolute, Relative, Fixed Positioning
- Stopping the CSS Positioning Panic
- Learn CSS Positioning in Ten Steps
- In-Depth Coverage of CSS Layers, Z-Index, Relative and Absolute Positioning
Adding Flavor With CSS
Now that you understand the basics, step up your game by adding a bit of flavor to your CSS. Below are some common techniques for enhancing and polishing your layout and images. We’ll also challenge you to create your own website from scratch using pure CSS.
9. Background Images
Background images come in handy for many visual effects. Whether you add a repeating background image to cover a large area or add stylish icons to your navigation, the property makes your page come to life.
Note, though, that the default print setting excludes the background property. When creating printable pages, be mindful of which elements have background images and include image tags.
Using Large Backgrounds
With monitor sizes getting bigger and bigger, large background images for websites have become quite popular.
Check out this detailed tutorial by Nick La of WebDesigner Wall on how to achieve this effect:
Also be sure to read the article on Webdesigner Depot about the “Do’s and Don’ts of Large Website Backgrounds.”
Text Replacement
You may be aware that not all standard browsers yet support custom fonts embedded on a website. But you can replace text with an image in various ways. One rather simple technique is to use the text-indent property.
Most commonly seen with headings, this technique replaces structured HTML text with an image.
h1 {
background: url(home_h1.gif) no-repeat;
text-indent: -99999px;
}You may sometimes need to specify a width and height (as well as display: block if the element is inline).
.replacethis {
background: url(home_h1.gif) no-repeat;
text-indent: -99999px;
width: 100%;
height: 60px;
display: block; /*--Needed only for inline elements--*/
}Articles on text replacement:
- Nine Techniques for CSS Image Replacement
- Using background-image to Replace Text
- Image Placement vs. Image Replacement
- Revised Image Replacement
CSS Sprites
CSS Sprites is a technique in which you use background positioning to show only a small area of a larger single background image (the larger image being actually multiple images laid out in a grid and merged into one file).
CSS Sprites are commonly used with icons and the hover and active states of images that have replaced links and navigation items.
Why use CSS Sprites? CSS Sprites save loading time and cut down on CSS and and HTTP requests. To learn more about CSS Sprites, check out the resources below!
Articles on CSS Sprites:
- The Mystery Of CSS Sprites: Techniques, Tools and Tutorials
- Advanced CSS Menu
- CSS Sprite Navigation Tutorial
- Creating Easy and Useful CSS Sprites
- Building Faster Websites with CSS Sprites
- CSS Sprites: Image Slicing’s Kiss of Death
- CSS Sprites: How Yahoo.com and AOL.com Improve Web Performance
- What Are CSS Sprites?
10. Image Enhancement
You can style images with CSS in various ways, and some designers have made a lot of effort to create very stylish image templates.
One simple trick is the double-border technique, which does not require any additional images and is pure CSS.

Your HTML would look like this:
<img class="double_border" src="sample.jpg" alt="" />
And your CSS would look like this:
img.double_border {
border: 1px solid #bbb;
padding: 5px; /*Inner border size*/
background: #ddd; /*Inner border color*/
}Nick La of WebDesigner Wall has a great tutorial on clever tricks to enhance your images. Do check it out!
11. PSD to HTML
Now that you have learned the fundamentals of CSS, it’s time to test your skill and build your own website from scratch! Below are some hand-picked tutorials from the best of the Web.
- Slice and Dice that PSD

- Converting a Design from PSD to HTML

- From PSD to HTML, Building a Set of Website Designs Step by Step

- Coding a Clean and Illustrative Web Design from Scratch

- Build a Sleek Portfolio Site from Scratch

- How To Build Your Own Single Page Portfolio Website

- Converting a Photoshop Mockup: Part Two, Episode One

Conclusion
Developing a strong foundation early on is critical to mastering CSS. Given how fast Web technology advances, there is no better time than now to get up to speed on the latest standards and trends.
Hopefully, the techniques we’ve covered here will give you a head start on becoming the ultimate CSS ninja. Good luck, stay hungry and keep learning!
(al)
Soh Tanaka, based in Los Angeles, CA, is a passionate front-end developer and designer who recently launched a CSS Gallery called Design Bombs. He specializes in CSS driven web design with an emphasis on usability and search engine optimization. For more front-end Web development tutorials, check out his Web design blog.
- 180 Comments
- 1
- 2October 5th, 2009 6:25 am
Nice Review of CSS!
The link to the “shorthand” page on your website is incorrect. It should be http://www.smashingmagazine.com/2008/08/18/7-principles-of-clean-and-optimized-css-code/Other links to your web site appear broken as well. They work if I replace “media1″ or “media2″ in the url with “www”.
(SM) Thank you, Ben, it was fixed.
- 3October 5th, 2009 6:26 am
Great tutorial!
Thank you very much… - 4October 5th, 2009 6:27 am
Great CSS tips!
- 5October 5th, 2009 6:30 am
Great, love it. I’ll be sending a link to all my employees. Thanks Smashing.
- 6October 5th, 2009 6:30 am
pretty sure most of us knew all this already.
- 7October 5th, 2009 6:31 am
Another solid article summarizing and clarifying essential css issues. Thanks!
- 8October 5th, 2009 6:34 am
Wow, this is going to be in a little of people’s bookmarks bar. Good job.
- 9October 5th, 2009 6:39 am
Very nice clear article..
well done.
- 10October 5th, 2009 6:40 am
What an article!
Thanks for that amount of work!
Cheers, Oliver
- 11
- 12October 5th, 2009 6:44 am
Thanks! I think a lot of beginners and those starting out are in great need of something like this! Your support of the beginner community is wonderful, keep it up!!!
- 13October 5th, 2009 6:44 am
Bookmarked!!
- 14October 5th, 2009 6:51 am
like it! Well done in the usual Smashing way!
- 15October 5th, 2009 6:56 am
Awesome stuff!
I will sift through this, this evening to see if there is anything that I don’t already know in there :)
- 16October 5th, 2009 7:01 am
I cannot really understand why PSD to HTML is needed.
As far as I know, PSD id the format of photoshop and how is image related with website developement ?I’m really confused.
- 17October 5th, 2009 7:03 am
Good stuff- But I think the biggest fundamental understanding missing from this intro is the difference between block and inline elements, and how css declarations affect each.
- 18October 5th, 2009 7:06 am
Awesome and very useful article.. very good for reference.. thanks so much!!
- 19October 5th, 2009 7:14 am
I usually never comment. But this a a great article.
- 20October 5th, 2009 7:16 am
Thanks a lot for this interesting list of advices.
I found another one, really interesting on anidea.com: http://anidea.com/technology/css-best-practices-for-modern-designs/, it’s more about how to organize your code and reduce the size.
Thanks for you share!
- 21October 5th, 2009 7:44 am
AFAIK, IE6 will only double the margin in the direction the float is. Ie: if you float your element to the left, only margin-left will be doubled.
And why would you float the header in chapter 2.?
- 22October 5th, 2009 7:56 am
Hi All,
Smashing magazine has always been great in giving tips and tricks.
Just this one thing was missing, BASIC CSS understanding.Even this beginner tutorial would be of great use to professionals!
Thanks you for this.
- 23October 5th, 2009 7:58 am
Nice! Hoping for the next article.. Thanks!
- 24October 5th, 2009 8:11 am
Thanks for that amount of work
- 25October 5th, 2009 8:17 am
Grat article, grat overview, thanx SM
- 26October 5th, 2009 8:19 am
very nice article!
- 27October 5th, 2009 8:30 am
Really a great article.
Can you please post more on javascript too. please
- 28October 5th, 2009 8:33 am
Thanks—perfect timing for me!
- 29October 5th, 2009 8:43 am
The image is semantically linked to the paragraph no? why not add the img inside the paragraph and be gone with any float problem?
- 30October 5th, 2009 8:47 am
Thanks, certainly learned some new CSS.
- 31October 5th, 2009 8:58 am
Awesome article. I learned a lot. Thanks
- 32
- 33October 5th, 2009 9:34 am
“In this case, use overflow: hidden on your parent container to completely wrap any floated child elements within it.”
Isn’t clearing the float a better solution for this?
- 34October 5th, 2009 9:35 am
Very nice tutorial. I am going to pass it around.
I would add that an absolutely positioned item’s base point is the upper left corner of the browser window unless it is contained within a element that has its own absolute or relative positioning. In that case, the base point is the upper left corner of that element. I think.
- 35October 5th, 2009 10:04 am
Very interesting, I like well done illustrations and the way things are explained. Thanks !
- 36October 5th, 2009 10:08 am
Woow! That’s great article. Thank you very much…
- 37October 5th, 2009 10:21 am
Yea! It’s great. I’m from Poland. I usually only read smashing articles but now i had to comment this. Really helpful for beginers.
- 38October 5th, 2009 10:23 am
Very nice article, Soh!
But I’ve got one problem working on a new site:
The navigation is set with margin-top: 0 and the container for the content is set with margin: 0 auto, but this is not what I want. I want it to have a margin-top of 80px, but this does not work. In the case with margin: 80px auto the navigation is inside the container. In another case that the container has position: absolute the margin: auto does not work.
Does anyone know how to set a container centered with a topmargin?
Thanks.
Edit:
I just got it and I am going to tell you – might happen that you’ll have the same problem in future:I set the container with margin: 80px auto. The navigation was this time inside the container, so I gave it a margin-top of -80px and this time it works.
Greetings from Germany.
- 39October 5th, 2009 10:27 am
fantastic. Thanks!!!
- 40October 5th, 2009 10:45 am
Super..
- 41October 5th, 2009 11:13 am
Excellent article, even for those who already are very familiar with CSS. Thanks!
- 42October 5th, 2009 11:14 am
Man, really really really awesome article. I need something exactly like that. Thanks alot ! :)
- 43October 5th, 2009 11:32 am
Great article ! Thanks for sharing.
- 44October 5th, 2009 11:40 am
Go, Soh! :D.
- 45October 5th, 2009 12:13 pm
Fantastic tutorial. I hope the book will be as good as theses tutorials !
- 46October 5th, 2009 12:14 pm
To Slobodan Kustrimovic, if part of your structural layout relies on floats, I believe clearing a float will clear all parent floats as well. Thus, if you have a left-floated nav bar, clearing a float will push the content down past the nav bar, no matter what internal floats you intended to clear. It’s been a point of frustration for me.
- 47October 5th, 2009 12:27 pm
What site is it that the little guy in the gas mask comes from? I know I’ve seen him in a 3×3 grid of icons with him in the center and they ‘grow’ when you hover over them. I want a similar effect in something I’m doing.
- 48October 5th, 2009 12:35 pm
AFAIK, IE6 will only double the margin in the direction the float is. Ie: if you float your element to the left, only margin-left will be doubled.
That was my understanding too; it doesn’t affect vertical margins.
@Slobodan Kustrimovic as Tom Something points out, clearing floats with more floats can sometimes cause you problems elsewhere; I’d use overflow over floats in almost all situations except when you want some content to appear outside the boundaries its container.
With regards the styling headings, I believe your use of <small> is incorrect. If you’re using it for presentational purposes, then obviously, that’s wrong, but if you’re using it for the sort of semantics it provides as suggested by the HTML5 spec, namely that it be used for small print, then I’d suggest that the subheading to a heading isn’t small print, it’s another heading.
- 49October 5th, 2009 12:55 pm
I truly love you Smash.
Thanks for this amazing article! It did come at the perfect time for me. - 50October 5th, 2009 1:22 pm
Great article. I liked it very much. Thanks for sharing your knowledge.
- 51October 5th, 2009 1:27 pm
This is soooooooo great! Everything you have to know when you start with CSS. For me it is good to look back and see what I am missing in my workflow. I already saw some things that I will change because of this tut.
Thanks guys
ps: looking forward what will be there in the book :-)
- 52October 5th, 2009 2:33 pm
Fantastic article, I’ve been looking to get a refresher in CSS, and this hit the spot!
- 53October 5th, 2009 2:57 pm
wow .. great post… everythin’ in one
- 54October 5th, 2009 3:24 pm
Why the rest of us can´t write so clear, punctual and without “bells and..”…
The greatest explanation about CSS, Thank you very, very much… - 55October 5th, 2009 4:23 pm
Very insight full post. I would have like to see some advance selectors used in the examples. Thanks for the article.
Benga creative
- 56October 5th, 2009 4:51 pm
as always you get and compile nice articles and wrapped ideas. keep up the good work guys. let’s rock the web world.
- 57October 5th, 2009 5:06 pm
On “padding vs margin” one thing that took me forever to discover is that when you have two elements with vertical margins that “collide”, you’ll only end up with one margin that is the larger of the two. Drove me nuts trying to figure out why I couldn’t get things to work out. Google “css collapsing margins” for more detail.
- 58October 5th, 2009 5:27 pm
thanks so much for this tutorial. i’m currently in school studying web design and interactive media. i actually had a mental breakdown trying to do the css for my final project. once i was able to figure out why i was having a mega brain fart i was able to get the css done. the thing this taught me was that i need to learn, or rather focus more on learning css, so i’ve been reading as many tutorials as i possibly can on css. i hope that by the time i’m done with school that i’ll be a css ninja. this tutorial will definitely be a part of my arsenal.
- 59October 5th, 2009 6:27 pm
I’m currently studying graphic design in Buenos Aires, Argentina and I found this article amazingly useful, I’ve been reading a lot about CSS lately since I started working with it on a daily basis and SM has been my starting point for everything. Thanks for being there when needed, when wanted and most of all, when the brain is so fried that you don’t know how the heck you’re gonna find a new idea =)
Once again, Brilliant articleGreetings from South America!
- 60October 5th, 2009 7:48 pm
Great post!
Thank you. - 61October 5th, 2009 8:12 pm
Nicely done Soh! Even us DB guys can learn a few CSS tips and tricks. :-)
- 62October 5th, 2009 9:02 pm
That’s good to begginer!
- 63October 5th, 2009 9:26 pm
Great article!
Just one thing tho, in the Floats section, the image under “Using Floats To Create Layouts” has style as float:left for both LEFT NAV as well as MAIN CONTENT. Shouldn’t the one for MAIN CONTENT be float:right instead? - 64October 5th, 2009 9:31 pm
Good Job.
- 65October 5th, 2009 9:46 pm
A Nice and useful tutorial!
- 66October 5th, 2009 9:52 pm
Woohooo !!
that was AWESOME!
nice post! - 67October 5th, 2009 10:05 pm
GREAT!!!!
- 68October 5th, 2009 10:35 pm
very very nice tutorial
- 69October 5th, 2009 10:54 pm
Great post.
Really awesome. - 70October 5th, 2009 11:18 pm
Nice round-up, but in chapter 1 (margins vs paddings) you’re really missing some guidance for usage when there is no border or background, and the same visual effect can be accomplished using either a padding or a margin. That’s where it becomes interesting.
- 71October 5th, 2009 11:19 pm
If we have to read only one page about CSS it must be this one ! Some of theses tricks are used on our page aSeed Webdesign
- 72October 5th, 2009 11:32 pm
Nice “tutorial”. Very clear and clever. Always good to read basics :)
- 73October 5th, 2009 11:40 pm
Excellent. The power of CSS is incredible!
- 74October 5th, 2009 11:42 pm
Smashing as usual :) thumbs up
- 75October 5th, 2009 11:46 pm
thanks…..nice tutor
- 76October 6th, 2009 12:01 am
Chapter 6: the container of a floating element needs first the overflow:hidden clearing the float. But older IEs additionally need a height:1% or a zoom:1 (to get hasLayout). Otherwise it doesn’t work.
- 77October 6th, 2009 12:20 am
A great tutorial that I can refer back to and not constantly ask / nag to “how do you do this again!”
Thank you – keep them coming
- 78October 6th, 2009 12:21 am
good article. However…
for and using the background technique isnt what id use. Id use list-style-image.
And, for the text replacement, wouldnt the technique be very very bad for accessibility? - 79October 6th, 2009 12:22 am
nice thx for article
- 80October 6th, 2009 12:39 am
thx
was refreshing my memory with that - 81October 6th, 2009 12:53 am
Hallelujah Smash Magazine!
- 82October 6th, 2009 12:56 am
Great! thank you so much to share this article
- 83October 6th, 2009 1:23 am
Very nice tutorial, very useful – great job!
- 84October 6th, 2009 1:37 am
Great, this kinds of articles is appreciated.
- 85October 6th, 2009 2:11 am
Very practical, simple and very useful guide… Thank you!!!
- 86October 6th, 2009 2:36 am
Good!!!! Excellent article
- 87October 6th, 2009 2:53 am
These articles are great, but people dont understand how to use :
floats, relative and absolute positioning.
Theres alot of bad techniques in this tutorial :(
- 88October 6th, 2009 3:15 am
Hello,
This is really one of the nicest tutorial for bigginers.Thanks a lot!!! keep up the good work.
MEG :)
- 89October 6th, 2009 3:27 am
“Even this beginner tutorial would be of great use to professionals!”
What. This is a basic article, not taking away from it but if a professional that uses html/css needs this they are not a professional.
- 90October 6th, 2009 4:12 am
Excellent tutorial, very useful!
please make some articles about ERGONOMIC DESIGN GUIDELINES or STANDARTS! for websites…
thank you - 91October 6th, 2009 4:54 am
@Soh Tanaka, welcome to Smashing Magazine. You’re best.
- 92October 6th, 2009 4:55 am
Very nice tutorial for newbies.
- 93October 6th, 2009 5:16 am
Very nice overview, but don’t miss this “CSS Shorthand Properties” ressource!
- 94October 6th, 2009 5:28 am
fantastic article…
i am a beginner and this article cleared my doubts about padding, margin and float.
thanks
- 95October 6th, 2009 6:07 am
Best CSS tutorial I’ve ever seen, also emphasizes the current trends. Thanks!
- 96October 6th, 2009 6:13 am
Nice article!
However, in the thing about floats it says ‘Reverse the order of the HTML markup so that you call the floated element first, and the neighboring element second.’ but this make the semantics suck.
- 97October 6th, 2009 6:19 am
Thanks for a very helpful article. For those of us who don’t work in or with CSS every day, it’s great to have a resource for “remembering” how to do something in CSS, as well as a place to see what’s currently being used.
- 98October 6th, 2009 7:22 am
I found the link I was looking for. The logo is for DesignBombs and the effect I was wanting is here: http://www.sohtanaka.com/web-design/fancy-thumbnail-hover-effect-w-jquery/ in case anyone else cares. :}
- 99October 6th, 2009 7:50 am
Awesome article on CSS! I just redesigned a website homepage for a client last week, using PSD and CSS, but will go back to add text-shadows for the headers. Thx for the great tips!
- 100October 6th, 2009 8:11 am
What an article! I wish there was something like this a couple of years ago, I’d have made my life easier!
You put it really clear, congrats!
- 101October 6th, 2009 8:13 am
Great article. I’ve been pondering over this one problem I had for my container, and overflow:hidden did the trick. I’ve been meaning to find a really short/condensed tutorial that teaches almost all there is to know to begin CSS, and I found it. I’ll be sharing this link around, thanks for writing it.
- 102October 6th, 2009 8:23 am
Wow this article is going to help me out so much, I am more of a print designer but i have noticed that more and more of my clients want web pages as well, and this will help me get the start I need.
Thank You Smashing Magazine.
M@ - 103October 6th, 2009 9:06 am
great information
- 104October 6th, 2009 9:45 am
nice, thanks a lot!
- 105October 6th, 2009 9:47 am
Thank for this very useful tutorial! A lot of trying and messing around falls into place now!
- 106October 6th, 2009 9:48 am
To get customized bullets for a list, you go a long way around — and involve background images which are problematic to print — when something like this works even better:
UL { list-style-image: url(http://example.com/bullet.png) }
Is there a reason for that?
- 107October 6th, 2009 10:03 am
Text Replacement – This is perfectly SEO friendly, google (as far as I know) doesn’t take ranking points off for negitive indent. It does hate “display:none;” and a few other techniques though;
I always use the following css on elements which will have a graphic background with text to replace the text. The more explicit rules help in consistent rendering across browsers.
html:
[h1]The site title[h1]
css:
h1 {
background: url(image/thesitetitle.jpg) no-repeat 0 0;
height:{the height of the image};
line-height:{the height of the image};
font-size:0.05em;
overflow: hidden;
text-indent:-555px;
width:{the width of the image};
}
- 108October 6th, 2009 10:54 am
This really hasn’t been covered before on here? Not even in one of the twenty or so “Top [Some Exorbitant Number] CSS Tutorials” posts on here?
I’d rather see a short article that completely deconstructs a single method or technique, than something that most people visiting this site on a regular basis should already have a pretty solid grasp of.
- 109October 6th, 2009 12:03 pm
Nice article, really. One thing: Would it be so hard to provide alternative CSS for a printable version? :-)
- 110October 6th, 2009 12:14 pm
Keep up the good work sophEr.
- 111October 6th, 2009 12:29 pm
This tutorial was really helpful for me. This trick with overflow hidden for wrapping any floated child elements within parent element was exactly what I needed. Thank you very much.
- 112October 6th, 2009 12:47 pm
Awesome … kick ass CSS skill booster
- 113October 6th, 2009 5:33 pm
very useful for me, thanks!
- 114October 6th, 2009 8:48 pm
Nice.. Regarding Point no. 6.. — It doesn’t work in IE6.. any solution for this….
- 115October 6th, 2009 8:52 pm
this is the greatest article i have read in a while. great, great work! :)
- 116October 6th, 2009 9:41 pm
Vertical alignment is wrong…. the margin rule is top right bottom left and both top and bottom as right and left must be set as negative like that:
width:600px;
height: 300px;
top: 50%;
left: 50%;
margin:-150px -300px -150px -300px; (or just -150px -300px as heights and sides as the same)
position:absolute; - 117October 6th, 2009 10:11 pm
@maria He is not wrong. Your solution works because the right and bottom margin is being ignored by the top and left margin, which results in the same technique as his method.
- 118October 6th, 2009 11:14 pm
Very basic stuff, but nice tutorials for begniners or to freshen up the ‘ol nugget :)
@Russell: Sure you want to use only 555px in your text indent to hide text? Think fully maxed windows on HD screens, your text might just pop up ;)
- 119October 6th, 2009 11:55 pm
I can’t bloody wait for the book!
- 120October 7th, 2009 12:09 am
it’s nice bro..
- 121October 7th, 2009 1:35 am
Very good tutorial, nice fresh up :)
- 122October 7th, 2009 1:40 am
Thanks for the post…
- 123October 7th, 2009 2:17 am
Thank !
I am going to do my first Div design by this link. So wish me a good luck .
You guys are great, keep it up. - 124October 7th, 2009 3:19 am
Good and informative.
- 125October 7th, 2009 4:51 am
Very good job. I had to learn all these issues when documentation as this was not available, nor was it so popular. Congratulations. Highly recommended for beginners.
- 126October 7th, 2009 5:13 am
Great article, the only thing I’d add is that if you’re going to use “float” make sure you’ve learnt about “clear” first!
- 127October 7th, 2009 6:47 am
Great article, thanks!
- 128October 7th, 2009 7:04 am
Normally I don’t comment the posts but this one, IMHO, is one of the greatest compilations about most comon doubts of Wed Design. Congrats and thanks ;)
- 129October 7th, 2009 8:07 am
Good summery of important CSS tips however you missed some fundamental tricks a CSS beginner needs such as CSS reset and Conditional Comments.
Also whenever talking about absolute positioning make sure to mention that it has to be within a relatively positioned container. That drove me crazy when I was first starting.
Cheers,
Tai – New Spark Designs - 130October 7th, 2009 9:07 am
Another method of text replacement is to use padding and overflow hidden rather than the minus text indent way. For eg.
h1 {
background: url(img/yourimage.png) no-repeat 0px 0px;
width: 300px(the width of the image) ;
height: 0px;
padding: 20px(the height of the image) 0px 0px 0px;
overflow: hidden;
} - 131October 7th, 2009 10:30 am
Thanks for such a nice tutorial :-)
It will help me lot.. - 132October 7th, 2009 11:01 am
where is the boookkkkkkkkk………….waiting for a long time…..:(
- 133October 7th, 2009 11:23 am
Very nice tutorial for beginners…thx a lot…
- 134October 7th, 2009 11:34 am
Really great information here. Thanks so much.
- 135October 7th, 2009 12:15 pm
It’s good to remember for novice that complete width of the elemet is also includes border width so I think better would be changing line
100px (content) + 10px (left padding) + 10px (right padding) = 120px (total width of element)
to
100px (content) + 10px (left padding) + 10px (right padding) + border (even if it’s 0px)= 120px (total width of element)
- 136October 7th, 2009 1:49 pm
A CSS rehash. Thanks
- 137October 7th, 2009 2:06 pm
I dont need to thank you, to many before me did already. It most be great to post on a website that attracts so much good visitors.
- 138October 7th, 2009 6:15 pm
nice article you got here. Very useful for newbie like me :)
- 139October 7th, 2009 8:52 pm
This one is really helpful for beginner. Thanks a Lot for the Tutorial.
- 140October 7th, 2009 9:14 pm
Great post, thank you! Since the title is “Mastering CSS Coding: Getting Started,” can we reasonably expect another post in the same vein? “Mastering CSS Coding: Intermediate Techniques,” for example? :)
- 141October 7th, 2009 11:56 pm
nothing new for experienced web designers, but hats off for a well-presented article with all the right information. very impressive!
- 142October 8th, 2009 2:56 am
Excellent post, as usual.
- 143October 8th, 2009 5:02 am
I was surprised to see so many positive comments on this article. It does look like it took a lot of time to compile, but there were many instances where vital information was omitted. A few of these have been mentioned by other commenters, but here are some examples of things I noticed:
1) covering padding/margin without mentioning the fact that margins collapse
2) covering floats without ‘clearing’
3) the 50% position / -left margin method of horizontal centering is listed in the vertical centering section
4)olandulshould be defined as lists of items wherein the order matters and does not matter (respectively), as opposed to their presentation
5) examples would be much more helpful if they were stripped down to their essential code ie. the custom bullets example
6) the heading styling section is not standards compliant. Css seems like anh1, Back to Basics anh2, and Tips/Tricks anh3. Usingsmalllike this is presentational, rather than semantic.
7)overflow:autorequires a set height
8) theoverflow:hiddensuggestion very hackish, and too complex for a beginner’s tutorial – a better solution would be to float the parent as well.
9) the text replacement section could be enhanced with a sentence or two about why it is the best method (from an accessibility point of view)
10) vertical centering, sprites and psd->html are definitely not beginner topics. ;)It is a pretty long list, so again, not a slam – but a suggestion of edits that could be made to the article now, in order to make it more useful for real beginners.
And to the beginners I would say: the two most helpful things I found (by far) when starting to learn CSS were the ‘CSS for Designers’ video series on lynda.com hosted by Molly Holzschlag and Andy Clarke, and the book CSS Mastery by Andy Budd. :)
- 144October 8th, 2009 5:40 am
awesome post.. very informative specially for beginners!
thanks
sharath - 145October 8th, 2009 12:31 pm
Best article on CSS I’ve ever read. Thank you.
- 146October 8th, 2009 10:49 pm
excellent article. you all never disappoint.
- 147October 8th, 2009 11:41 pm
Can’t wait to get started!
- 148October 9th, 2009 12:37 am
great guide for begginers, thanks for this, I atleast found another great resources for further education, thanks!
- 149October 9th, 2009 11:53 am
Excellent Article, very useful
- 150October 9th, 2009 3:56 pm
Best article on CSS I have ever read. Very clear, clean, and illustrative. Thanks a bunch!
- 151October 10th, 2009 10:54 am
This was really a best article.
I found the following solution for the floating elements very handy. Thanks to smashingmagazine. - 152October 11th, 2009 6:57 am
Really like this summary / reference / how-to article.
Motivating to become a bedder webber :)
#hungry to learn more - 153October 11th, 2009 4:56 pm
wow.. these tips will help me a lot!!! thanks.. :)
- 154October 12th, 2009 4:53 am
very good article. It explains quickly thew basics of CSS.
- 155October 12th, 2009 9:41 pm
excellent article, very use full thanks……
- 156October 12th, 2009 10:01 pm
It’s great post Chris.
I would actually post a question here !
I’have seen some amazing menu styles on these sites:
http://www.casioexilimlab.com/
http://www.razorbraille.com/But I’ve no idea to create that. Can we expect your post on this?
If anyone else knows how to do it, please share then.
Thanks - 157October 13th, 2009 12:12 am
Great tutorial! This is what all web-related developers must read!
BTW, I think that it’s worth mentioning that position:relative not only sets new origin for absolutely positioned child elements(in fact fixed and absolute positioned elements also do that), but also allows to move element around using left and top properties, keeping the original(0,0) space reserved by that element. I think that is what position:relative is all about.
- 158October 13th, 2009 1:31 am
great tutorial…
i like it.. thanx.. - 159October 13th, 2009 2:41 am
Nice round up……strong in basics….
- 160October 13th, 2009 3:50 am
Nice Tutorials and Explanations. But some what is missing to explain briefly…….
In CSS Sprites
- 161October 13th, 2009 1:04 pm
very very very nice all in one css tutorial.
- 162October 13th, 2009 6:42 pm
Ho Good Tutorial, Thanks a Lot for the Tutorial.
Thanks krab - 163October 14th, 2009 2:37 am
Great tutorial!
Thank you very much…! - 164October 16th, 2009 10:37 am
I learned a lot; thanks!
- 165October 16th, 2009 12:06 pm
yeahhh…it’s a great magazine for blogger..hohohoho
- 166October 18th, 2009 3:58 am
Brilliant. This would be something for me to read again and again to sharpen my CSS skill. Thanks
- 167October 19th, 2009 4:12 am
this is a fantastic contribution for all people starting on this sweet css world we are living in.
please keep doing the goodwork, long life to smashingmagazine.com!
thank you once more,
p - 168October 19th, 2009 2:20 pm
for Sarfraz Ahmed: This is most likely Flash animation. It goes WAY beyond css! If you are interested in it, you can visit http://www.adobe.com/products/flash/
- 169October 20th, 2009 2:15 am
i liked the Post…
are very useful!
really nice
Thank you - 170October 21st, 2009 1:22 am
Nice, again!
- 171October 22nd, 2009 6:17 am
0 to %100m for me … :))
- 172October 25th, 2009 12:13 pm
This is one of the best quick and simple write ups I think I have ever seen… very nicely done guys
- 173October 26th, 2009 1:27 am
Very very useful tutorial. Thanks a bunch !
- 174October 27th, 2009 2:46 pm
I’ve translated it to russian. )
http://divone.ru/css-master-klass-osnovnye-priyomy/ - 175October 28th, 2009 3:15 am
Greatest article that ever seen…..Thanks alot.
- 176November 2nd, 2009 4:10 am
Great tips. You definitely put it to the next level thanks to all those wonderful examples and screenshots.
I bet many starting CSS coders would find good tips from this article. - 177November 3rd, 2009 1:24 am
really good and useful article
- 178November 9th, 2009 1:17 pm
Very timely article — I needed a ‘refresher’. The writing is very good… illustrative…and has some good tips.
- 179November 16th, 2009 2:02 am
Really nice to start CSS site
- 180November 19th, 2009 2:26 am
Thank you, it’s one of the best tutorials I’ve ever seen!
- 00
There are no trackbacks at this time. If you are interested in leaving a trackback, please use this URL.
Leave a Comment
Make sure you enter the * required information where indicated. Please also rate the article as it will help us decide future content and posts. Comments are moderated – and rel="nofollow" is in use. Please no link dropping, no keywords or domains as names; do not spam, and do not advertise!
Interact
Popular
- 100 Wordpress Themes
- Photoshop Tutorials
- Fantastic Wallpapers
- 40+ Excellent Freefonts
- Dual-Screen Wallpapers
- Wordpress Themes for 2009
- Illustrator Tutorials
- Incredible Free Icon Sets
- High-Quality Free Fonts
- 30 Scripts For Galleries
- Photoshop Text Effects
- Useful Icon Sets
- Web Design Trends
- iPhone Wallpapers
- Before Launching a Website
- CSS Layouts And Templates
- Photoshop Actions
- Stunning Pictures and Photos
- Fantastic HDR Pictures
- Logo Design Tutorials
- Free Design Templates
- 10 Mistakes In Logo Design
- Photoshop Custom Shapes
- 40 Creative Design Layouts
- 8 Layout Solutions
- 53 CSS Techniques
- Photography Techniques
- Black & White Photography
- Styling Design Elements
- CSS-Based Forms
- 50 jQuery Techniques
- 50 Portfolio Websites
- 50 CSS Techniques
- Creative Logo Designs
- Desktop Wallpapers
- 25 Open Source Mac Apps
- 50 Free Icon Sets
- @ilmv oh ok then ;)
- @ilmv no, the SM Book will not be out of date :) We made sure it contains universal design, usability and marketing principles.
- Apple ad bombing Windows 7 on Google - http://bit.ly/28ctPq
- Atatonic - a fresh CSS framework - http://bit.ly/4oOV2w (via @umutm)
- @HrvojeKC yes, that's an interesting idea. Maybe when the waiting is over, we'll write a detailed post about it.
- @benbeltran thanks, Ben, your support means a lot to us.







(13 votes, average: 4.92 out of 5)
Thank you for the nice tutorial.