Smashing Magazine - we smash you with the information that will make your life easier. really.
Mastering CSS Coding: Getting Started
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
[Offtopic: by the way, do you know the Smashing Network has its own Smashing Network RSS Feed? Only excerpts are displayed in the feed.]
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.
- 195 Comments
- 1
- 2
October 5th, 2009 6:25 amNice 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.
- 3
October 5th, 2009 6:26 amGreat tutorial!
Thank you very much… - 4
October 5th, 2009 6:27 amGreat CSS tips!
- 5
October 5th, 2009 6:30 amGreat, love it. I’ll be sending a link to all my employees. Thanks Smashing.
- 6
October 5th, 2009 6:30 ampretty sure most of us knew all this already.
- 7
October 5th, 2009 6:31 amAnother solid article summarizing and clarifying essential css issues. Thanks!
- 8
October 5th, 2009 6:34 amWow, this is going to be in a little of people’s bookmarks bar. Good job.
- 9
October 5th, 2009 6:39 amVery nice clear article..
well done.
- 10
October 5th, 2009 6:40 amWhat an article!
Thanks for that amount of work!
Cheers, Oliver
- 11

- 12
October 5th, 2009 6:44 amThanks! 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!!!
- 13
October 5th, 2009 6:44 amBookmarked!!
- 14
October 5th, 2009 6:51 amlike it! Well done in the usual Smashing way!
- 15
October 5th, 2009 6:56 amAwesome stuff!
I will sift through this, this evening to see if there is anything that I don’t already know in there :)
- 16
October 5th, 2009 7:01 amI 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.
- 17
November 29th, 2009 7:12 pmFrontend/User Ineterface/Layouts , there are all usually designed in photoshop and then sliced.The slices are then given functionality (woven into a website) using (x)html/css etc..
- 17
- 18
October 5th, 2009 7:03 amGood 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.
- 19
October 5th, 2009 7:06 amAwesome and very useful article.. very good for reference.. thanks so much!!
- 20
October 5th, 2009 7:14 amI usually never comment. But this a a great article.
- 21
October 5th, 2009 7:16 amThanks 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!
- 22
October 5th, 2009 7:44 amAFAIK, 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.?
- 23
October 5th, 2009 7:56 amHi 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.
- 24
October 5th, 2009 7:58 amNice! Hoping for the next article.. Thanks!
- 25
October 5th, 2009 8:11 amThanks for that amount of work
- 26
October 5th, 2009 8:17 amGrat article, grat overview, thanx SM
- 27
October 5th, 2009 8:19 amvery nice article!
- 28
October 5th, 2009 8:30 amReally a great article.
Can you please post more on javascript too. please
- 29
October 5th, 2009 8:33 amThanks—perfect timing for me!
- 30
October 5th, 2009 8:43 amThe image is semantically linked to the paragraph no? why not add the img inside the paragraph and be gone with any float problem?
- 31
October 5th, 2009 8:47 amThanks, certainly learned some new CSS.
- 32
October 5th, 2009 8:58 amAwesome article. I learned a lot. Thanks
- 33
- 34
October 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?
- 35
October 5th, 2009 9:35 amVery 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.
- 36
October 5th, 2009 10:04 amVery interesting, I like well done illustrations and the way things are explained. Thanks !
- 37
October 5th, 2009 10:08 amWoow! That’s great article. Thank you very much…
- 38
October 5th, 2009 10:21 amYea! It’s great. I’m from Poland. I usually only read smashing articles but now i had to comment this. Really helpful for beginers.
- 39
October 5th, 2009 10:23 amVery 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.
- 40
October 5th, 2009 10:27 amfantastic. Thanks!!!
- 41
October 5th, 2009 10:45 amSuper..
- 42
October 5th, 2009 11:13 amExcellent article, even for those who already are very familiar with CSS. Thanks!
- 43
October 5th, 2009 11:14 amMan, really really really awesome article. I need something exactly like that. Thanks alot ! :)
- 44
October 5th, 2009 11:32 amGreat article ! Thanks for sharing.
- 45
October 5th, 2009 11:40 amGo, Soh! :D.
- 46
October 5th, 2009 12:13 pmFantastic tutorial. I hope the book will be as good as theses tutorials !
- 47
October 5th, 2009 12:14 pmTo 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.
- 48
October 5th, 2009 12:27 pmWhat 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.
- 49
October 5th, 2009 12:35 pmAFAIK, 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.
- 50
October 5th, 2009 12:55 pmI truly love you Smash.
Thanks for this amazing article! It did come at the perfect time for me. - 51
October 5th, 2009 1:22 pmGreat article. I liked it very much. Thanks for sharing your knowledge.
- 52
October 5th, 2009 1:27 pmThis 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 :-)
- 53
October 5th, 2009 2:33 pmFantastic article, I’ve been looking to get a refresher in CSS, and this hit the spot!
- 54
October 5th, 2009 2:57 pmwow .. great post… everythin’ in one
- 55
October 5th, 2009 3:24 pmWhy the rest of us can´t write so clear, punctual and without “bells and..”…
The greatest explanation about CSS, Thank you very, very much… - 56
October 5th, 2009 4:23 pmVery insight full post. I would have like to see some advance selectors used in the examples. Thanks for the article.
Benga creative
- 57
October 5th, 2009 4:51 pmas always you get and compile nice articles and wrapped ideas. keep up the good work guys. let’s rock the web world.
- 58
October 5th, 2009 5:06 pmOn “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.
- 59
October 5th, 2009 5:27 pmthanks 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.
- 60
October 5th, 2009 6:27 pmI’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!
- 61
October 5th, 2009 7:48 pmGreat post!
Thank you. - 62
October 5th, 2009 8:12 pmNicely done Soh! Even us DB guys can learn a few CSS tips and tricks. :-)
- 63
October 5th, 2009 9:02 pmThat’s good to begginer!
- 64
October 5th, 2009 9:26 pmGreat 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? - 65
October 5th, 2009 9:31 pmGood Job.
- 66
October 5th, 2009 9:46 pmA Nice and useful tutorial!
- 67
October 5th, 2009 9:52 pmWoohooo !!
that was AWESOME!
nice post! - 68
October 5th, 2009 10:05 pmGREAT!!!!
- 69
October 5th, 2009 10:35 pmvery very nice tutorial
- 70
October 5th, 2009 10:54 pmGreat post.
Really awesome. - 71
October 5th, 2009 11:18 pmNice 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.
- 72
October 5th, 2009 11:19 pmIf 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
- 73
October 5th, 2009 11:32 pmNice “tutorial”. Very clear and clever. Always good to read basics :)
- 74
October 5th, 2009 11:40 pmExcellent. The power of CSS is incredible!
- 75
October 5th, 2009 11:42 pmSmashing as usual :) thumbs up
- 76
October 5th, 2009 11:46 pmthanks…..nice tutor
- 77
October 6th, 2009 12:01 amChapter 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.
- 78
October 6th, 2009 12:20 amA 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
- 79
October 6th, 2009 12:21 amgood 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? - 80
October 6th, 2009 12:22 amnice thx for article
- 81
October 6th, 2009 12:39 amthx
was refreshing my memory with that - 82
October 6th, 2009 12:53 amHallelujah Smash Magazine!
- 83
October 6th, 2009 12:56 amGreat! thank you so much to share this article
- 84
October 6th, 2009 1:23 amVery nice tutorial, very useful – great job!
- 85
October 6th, 2009 1:37 amGreat, this kinds of articles is appreciated.
- 86
October 6th, 2009 2:11 amVery practical, simple and very useful guide… Thank you!!!
- 87
October 6th, 2009 2:36 amGood!!!! Excellent article
- 88
October 6th, 2009 2:53 amThese articles are great, but people dont understand how to use :
floats, relative and absolute positioning.
Theres alot of bad techniques in this tutorial :(
- 89
October 6th, 2009 3:15 amHello,
This is really one of the nicest tutorial for bigginers.Thanks a lot!!! keep up the good work.
MEG :)
- 90
October 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.
- 91
October 6th, 2009 4:12 amExcellent tutorial, very useful!
please make some articles about ERGONOMIC DESIGN GUIDELINES or STANDARTS! for websites…
thank you - 92
October 6th, 2009 4:54 am@Soh Tanaka, welcome to Smashing Magazine. You’re best.
- 93
October 6th, 2009 4:55 amVery nice tutorial for newbies.
- 94
October 6th, 2009 5:16 amVery nice overview, but don’t miss this “CSS Shorthand Properties” ressource!
- 95
October 6th, 2009 5:28 amfantastic article…
i am a beginner and this article cleared my doubts about padding, margin and float.
thanks
- 96
October 6th, 2009 6:07 amBest CSS tutorial I’ve ever seen, also emphasizes the current trends. Thanks!
- 97
October 6th, 2009 6:13 amNice 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.
- 98
October 6th, 2009 6:19 amThanks 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.
- 99
October 6th, 2009 7:22 amI 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. :}
- 100
October 6th, 2009 7:50 amAwesome 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!
- 101
October 6th, 2009 8:11 amWhat 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!
- 102
October 6th, 2009 8:13 amGreat 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.
- 103
October 6th, 2009 8:23 amWow 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@ - 104
October 6th, 2009 9:06 amgreat information
- 105
October 6th, 2009 9:45 amnice, thanks a lot!
- 106
October 6th, 2009 9:47 amThank for this very useful tutorial! A lot of trying and messing around falls into place now!
- 107
October 6th, 2009 9:48 amTo 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?
- 108
October 6th, 2009 10:03 amText 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};
}
- 109
October 6th, 2009 10:54 amThis 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.
- 110
October 6th, 2009 12:03 pmNice article, really. One thing: Would it be so hard to provide alternative CSS for a printable version? :-)
- 111
October 6th, 2009 12:14 pmKeep up the good work sophEr.
- 112
October 6th, 2009 12:29 pmThis 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.
- 113
October 6th, 2009 12:47 pmAwesome … kick ass CSS skill booster
- 114
October 6th, 2009 5:33 pmvery useful for me, thanks!
- 115
October 6th, 2009 8:48 pmNice.. Regarding Point no. 6.. — It doesn’t work in IE6.. any solution for this….
- 116
October 6th, 2009 8:52 pmthis is the greatest article i have read in a while. great, great work! :)
- 117
October 6th, 2009 9:41 pmVertical 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; - 118
October 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.
- 119
October 6th, 2009 11:14 pmVery 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 ;)
- 120
October 6th, 2009 11:55 pmI can’t bloody wait for the book!
- 121
October 7th, 2009 12:09 amit’s nice bro..
- 122
October 7th, 2009 1:35 amVery good tutorial, nice fresh up :)
- 123
October 7th, 2009 1:40 amThanks for the post…
- 124
October 7th, 2009 2:17 amThank !
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. - 125
October 7th, 2009 3:19 amGood and informative.
- 126
October 7th, 2009 4:51 amVery 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.
- 127
October 7th, 2009 5:13 amGreat article, the only thing I’d add is that if you’re going to use “float” make sure you’ve learnt about “clear” first!
- 128
October 7th, 2009 6:47 amGreat article, thanks!
- 129
October 7th, 2009 7:04 amNormally 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 ;)
- 130
October 7th, 2009 8:07 amGood 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 - 131
October 7th, 2009 9:07 amAnother 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;
} - 132
October 7th, 2009 10:30 amThanks for such a nice tutorial :-)
It will help me lot.. - 133
October 7th, 2009 11:01 amwhere is the boookkkkkkkkk………….waiting for a long time…..:(
- 134
October 7th, 2009 11:23 amVery nice tutorial for beginners…thx a lot…
- 135
October 7th, 2009 11:34 amReally great information here. Thanks so much.
- 136
October 7th, 2009 12:15 pmIt’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)
- 137
October 7th, 2009 1:49 pmA CSS rehash. Thanks
- 138
October 7th, 2009 2:06 pmI 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.
- 139
October 7th, 2009 6:15 pmnice article you got here. Very useful for newbie like me :)
- 140
October 7th, 2009 8:52 pmThis one is really helpful for beginner. Thanks a Lot for the Tutorial.
- 141
October 7th, 2009 9:14 pmGreat 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? :)
- 142
October 7th, 2009 11:56 pmnothing new for experienced web designers, but hats off for a well-presented article with all the right information. very impressive!
- 143
October 8th, 2009 2:56 amExcellent post, as usual.
- 144
October 8th, 2009 5:02 amI 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. :)
- 145
October 8th, 2009 5:40 amawesome post.. very informative specially for beginners!
thanks
sharath - 146
October 8th, 2009 12:31 pmBest article on CSS I’ve ever read. Thank you.
- 147
October 8th, 2009 10:49 pmexcellent article. you all never disappoint.
- 148
October 8th, 2009 11:41 pmCan’t wait to get started!
- 149
October 9th, 2009 12:37 amgreat guide for begginers, thanks for this, I atleast found another great resources for further education, thanks!
- 150
October 9th, 2009 11:53 amExcellent Article, very useful
- 151
October 9th, 2009 3:56 pmBest article on CSS I have ever read. Very clear, clean, and illustrative. Thanks a bunch!
- 152
October 10th, 2009 10:54 amThis was really a best article.
I found the following solution for the floating elements very handy. Thanks to smashingmagazine. - 153
October 11th, 2009 6:57 amReally like this summary / reference / how-to article.
Motivating to become a bedder webber :)
#hungry to learn more - 154
October 11th, 2009 4:56 pmwow.. these tips will help me a lot!!! thanks.. :)
- 155
October 12th, 2009 4:53 amvery good article. It explains quickly thew basics of CSS.
- 156
October 12th, 2009 9:41 pmexcellent article, very use full thanks……
- 157
October 12th, 2009 10:01 pmIt’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 - 158
October 13th, 2009 12:12 amGreat 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.
- 159
October 13th, 2009 1:31 amgreat tutorial…
i like it.. thanx.. - 160
October 13th, 2009 2:41 amNice round up……strong in basics….
- 161
October 13th, 2009 3:50 amNice Tutorials and Explanations. But some what is missing to explain briefly…….
In CSS Sprites
- 162
October 13th, 2009 1:04 pmvery very very nice all in one css tutorial.
- 163
October 13th, 2009 6:42 pmHo Good Tutorial, Thanks a Lot for the Tutorial.
Thanks krab - 164
October 14th, 2009 2:37 amGreat tutorial!
Thank you very much…! - 165
October 16th, 2009 10:37 amI learned a lot; thanks!
- 166
October 16th, 2009 12:06 pmyeahhh…it’s a great magazine for blogger..hohohoho
- 167
October 18th, 2009 3:58 amBrilliant. This would be something for me to read again and again to sharpen my CSS skill. Thanks
- 168
October 19th, 2009 4:12 amthis 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 - 169
October 19th, 2009 2:20 pmfor 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/
- 170
October 20th, 2009 2:15 ami liked the Post…
are very useful!
really nice
Thank you - 171
October 21st, 2009 1:22 amNice, again!
- 172
October 22nd, 2009 6:17 am0 to %100m for me … :))
- 173
October 25th, 2009 12:13 pmThis is one of the best quick and simple write ups I think I have ever seen… very nicely done guys
- 174
October 26th, 2009 1:27 amVery very useful tutorial. Thanks a bunch !
- 175
October 27th, 2009 2:46 pmI’ve translated it to russian. )
http://divone.ru/css-master-klass-osnovnye-priyomy/ - 176
October 28th, 2009 3:15 amGreatest article that ever seen…..Thanks alot.
- 177
November 2nd, 2009 4:10 amGreat 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. - 178
November 3rd, 2009 1:24 amreally good and useful article
- 179
November 9th, 2009 1:17 pmVery timely article — I needed a ‘refresher’. The writing is very good… illustrative…and has some good tips.
- 180
November 16th, 2009 2:02 amReally nice to start CSS site
- 181
November 19th, 2009 2:26 amThank you, it’s one of the best tutorials I’ve ever seen!
- 182
November 23rd, 2009 7:41 pmReally useful tutorial. Thank you.
- 183
November 26th, 2009 3:45 am“Another great article to read while coding web layouts:
Though, not exactly a psd to html conversion article, but one must keep these tips in mind while coding a PSD into search engine as well as user friendly web layout.
“ - 184
December 10th, 2009 6:48 amGreat article, and even more importantly… well designed! Graphics are clear and easy to understand, and you did a great job explaining everything.
I would love to see a similar article digging deeper into CSS horizontal navigation with drop downs for certain menu items.
Again, great job and thanks for taking the time to make it visually appealing as well.
- 185
December 15th, 2009 2:31 amGreat article, incredibly well written and easily understood.
Well done!
- 186
December 16th, 2009 6:45 amThis is definitely the best tutorial ever…
Thank you for your great site! - 187
December 17th, 2009 12:08 pmThank’s a lot for your time, I have learned a lot ^^
- 188
December 25th, 2009 10:23 pmGreat article…I have learned something…
- 189
December 27th, 2009 2:35 amGreat and useful articles. I like very much. Thanks smashing team.
- 190
December 31st, 2009 2:09 amvery nice tutorial
- 191
January 21st, 2010 1:52 amGood Article coud use some tipps of css.
- 192
January 25th, 2010 10:16 amSoh you’re Da man!
I have an exam tomorrow on building sites with CSS and thanks to you I feel much more confident
thank you very much! - 193
February 2nd, 2010 4:23 pmvery useful tutorial.greeting from romania!
- 194
February 5th, 2010 3:32 amCSS is fundamental for evry designer & i found this post very helpfu in browser hacking too…i will definitely share is to my colleagues.
Thanks
- 195
February 5th, 2010 3:41 amGreat css tips…
Thanks
- 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
- We’re Ready for CSS3, but are we Ready for CSS3? - http://bit.ly/cKN7Bz
- lovely-css: a grid-based CSS framework - http://bit.ly/ayA0wb
- How The CSS Selector nth-child Works - http://bit.ly/cgPMqe
- 33 New High Quality Adobe Illustrator Tutorials - http://bit.ly/bTgFbu
- How to Drastically Improve Your Designs - http://bit.ly/a9L1sb
- A Quick Look at Mobile Web Designs - http://bit.ly/9TCWCG
- How to Test your JavaScript Code with QUnit - http://bit.ly/da853c








Thank you for the nice tutorial.