hidden

Smashing Magazine

Mastering CSS Coding: Getting Started

Advertisement

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:

  1. Padding vs. margin
  2. Floats
  3. Center alignment
  4. Ordered vs. unordered lists
  5. Styling headings
  6. Overflow
  7. Position

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. Background images
  2. Image enhancement
  3. PSD to XHTML

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:

1 A in Mastering CSS Coding: Getting Started

1 C in Mastering CSS Coding: Getting Started
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.

1 B in Mastering CSS Coding: Getting Started

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:

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.”

2 A in Mastering CSS Coding: Getting Started

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.

2 B in Mastering CSS Coding: Getting Started

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.

2 C in Mastering CSS Coding: Getting Started

You can correct this issue in one of two ways:

  1. Reverse the order of the HTML markup so that you call the floated element first, and the neighboring element second.
    2 C1 in Mastering CSS Coding: Getting Started
  2. 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.
    2 C2 in Mastering CSS Coding: Getting Started

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.

Upd 2 D in Mastering CSS Coding: Getting Started

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:

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.

3 A in Mastering CSS Coding: Getting Started

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.

Upd3 B in Mastering CSS Coding: Getting Started

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:

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--*/
}

4 A in Mastering CSS Coding: Getting Started

Resources for list items:

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:

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.

5 A in Mastering CSS Coding: Getting Started

Your HTML would look like this:

<h1><span>CSS</span> Back to Basics <small>Tips, Tricks, &amp; 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:

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.

6 A in Mastering CSS Coding: Getting Started

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.

6 B in Mastering CSS Coding: Getting Started

Additional resources:

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:

  1. Set the coordinates (i.e. define the positioning of the x and y coordinates).
  2. Choose the right value for the situation: relative, absolute, fixed or static.
  3. 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.

7 A in Mastering CSS Coding: Getting Started

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:

7 B in Mastering CSS Coding: Getting Started

Additional resources:

[Offtopic: by the way, did you know that we are publishing a Smashing eBook Series? The brand new eBook #3 is Mastering Photoshop For Web Design, written by our Photoshop-expert Thomas Giannattasio.]

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:

8 A in Mastering CSS Coding: Getting Started

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:

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).

8 C in Mastering CSS Coding: Getting Started

CSS Sprites are commonly used with icons and the hover and active states of images that have replaced links and navigation items.

8 D in Mastering CSS Coding: Getting Started

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:

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.

9 B in Mastering CSS Coding: Getting Started

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!

9 A in Mastering CSS Coding: Getting Started

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.

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.

50

Tags:

Advertising
  1. 1
    M.R.
    October 5th, 2009 6:24 am

    Thank you for the nice tutorial.

  2. 2
    Ben S
    October 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.

  3. 3
    timmy
    October 5th, 2009 6:26 am

    Great tutorial!
    Thank you very much…

  4. 4
    pieter
    October 5th, 2009 6:27 am

    Great CSS tips!

  5. 5
    RobbieAlpha
    October 5th, 2009 6:30 am

    Great, love it. I’ll be sending a link to all my employees. Thanks Smashing.

  6. 6
    nick
    October 5th, 2009 6:30 am

    pretty sure most of us knew all this already.

  7. 7
    Cecil
    October 5th, 2009 6:31 am

    Another solid article summarizing and clarifying essential css issues. Thanks!

  8. 8
    Matt
    October 5th, 2009 6:34 am

    Wow, this is going to be in a little of people’s bookmarks bar. Good job.

  9. 9
    Gavin Will
    October 5th, 2009 6:39 am

    Very nice clear article..

    well done.

  10. 10
    Oliver
    October 5th, 2009 6:40 am

    What an article!

    Thanks for that amount of work!

    Cheers, Oliver

  11. 11
    Daniel
    October 5th, 2009 6:43 am

    isdanielonline.com Very nicely put together. Thank you.

  12. 12
    Pam - Ryvon Designs
    October 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!!!

  13. 13
    Bleyder
    October 5th, 2009 6:44 am

    Bookmarked!!

  14. 14
    spritzstuhl
    October 5th, 2009 6:51 am

    like it! Well done in the usual Smashing way!

  15. 15
    Rob Eardley
    October 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 :)

  16. 16
    Ujjwol
    October 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.

    • 17
      sidd
      November 29th, 2009 7:12 pm

      Frontend/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
    elliott
    October 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.

  18. 19
    JP
    October 5th, 2009 7:06 am

    Awesome and very useful article.. very good for reference.. thanks so much!!

  19. 20
    Phil
    October 5th, 2009 7:14 am

    I usually never comment. But this a a great article.

  20. 21
    xethorn
    October 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!

  21. 22
    Samuel
    October 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.?

  22. 23
    Siddhant Mehta
    October 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.

  23. 24
    Gene
    October 5th, 2009 7:58 am

    Nice! Hoping for the next article.. Thanks!

  24. 25
    designfollow
    October 5th, 2009 8:11 am

    Thanks for that amount of work

  25. 26
    silverback
    October 5th, 2009 8:17 am

    Grat article, grat overview, thanx SM

  26. 27
    albertopy
    October 5th, 2009 8:19 am

    very nice article!

  27. 28
    deepakraj
    October 5th, 2009 8:30 am

    Really a great article.

    Can you please post more on javascript too. please

  28. 29
    Crompton
    October 5th, 2009 8:33 am

    Thanks—perfect timing for me!

  29. 30
    Jewen Soyterkijns
    October 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?

  30. 31
    Ann
    October 5th, 2009 8:47 am

    Thanks, certainly learned some new CSS.

  31. 32
    Steve
    October 5th, 2009 8:58 am

    Awesome article. I learned a lot. Thanks

  32. 33
    Jad Graphics
    October 5th, 2009 9:13 am

    Thanks Soh for this awesome article about CSS. I have been using CSS for a while now, but I still learned something from this article. I never knew that just by adding line height to your text, you can vertically center it. That’s awesome.

    Jad Limcaco
    Jad Graphics

  33. 34
    Slobodan Kustrimovic
    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?

  34. 35
    Martin Frobisher
    October 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.

  35. 36
    Julien L
    October 5th, 2009 10:04 am

    Very interesting, I like well done illustrations and the way things are explained. Thanks !

  36. 37
    Afsin
    October 5th, 2009 10:08 am

    Woow! That’s great article. Thank you very much…

  37. 38
    teomos
    October 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.

  38. 39
    Exorbitans
    October 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.

  39. 40
    eriwyn
    October 5th, 2009 10:27 am

    fantastic. Thanks!!!

  40. 41
    sharunbaby
    October 5th, 2009 10:45 am

    Super..

  41. 42
    Bryan Hughes
    October 5th, 2009 11:13 am

    Excellent article, even for those who already are very familiar with CSS. Thanks!

  42. 43
    Enk.
    October 5th, 2009 11:14 am

    Man, really really really awesome article. I need something exactly like that. Thanks alot ! :)

  43. 44
    All for Design
    October 5th, 2009 11:32 am

    Great article ! Thanks for sharing.

  44. 45
    Alexis Brille
    October 5th, 2009 11:40 am

    Go, Soh! :D.

  45. 46
    Jean-Francois Monfette
    October 5th, 2009 12:13 pm

    Fantastic tutorial. I hope the book will be as good as theses tutorials !

  46. 47
    Tom Something
    October 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.

  47. 48
    teebee
    October 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.

  48. 49
    John Faulds
    October 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.

  49. 50
    Sam
    October 5th, 2009 12:55 pm

    I truly love you Smash.
    Thanks for this amazing article! It did come at the perfect time for me.

  50. 51
    Thiago Cangussu
    October 5th, 2009 1:22 pm

    Great article. I liked it very much. Thanks for sharing your knowledge.

  51. 52
    Marco
    October 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 :-)

  52. 53
    Trevor
    October 5th, 2009 2:33 pm

    Fantastic article, I’ve been looking to get a refresher in CSS, and this hit the spot!

  53. 54
    macias
    October 5th, 2009 2:57 pm

    wow .. great post… everythin’ in one

  54. 55
    Alecme
    October 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…

  55. 56
    Bengacreative
    October 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

  56. 57
    Oliver
    October 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.

  57. 58
    Ed in TX
    October 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.

  58. 59
    james
    October 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.

  59. 60
    neshama
    October 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 article

    Greetings from South America!

  60. 61
    Hein Thu aung
    October 5th, 2009 7:48 pm

    Great post!
    Thank you.

  61. 62
    Josh
    October 5th, 2009 8:12 pm

    Nicely done Soh! Even us DB guys can learn a few CSS tips and tricks. :-)

  62. 63
    shinhwas
    October 5th, 2009 9:02 pm

    That’s good to begginer!

  63. 64
    Bhadra
    October 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?

  64. 65
    eXweed
    October 5th, 2009 9:31 pm

    Good Job.

  65. 66
    Jayaseelan
    October 5th, 2009 9:46 pm

    A Nice and useful tutorial!

  66. 67
    Ounsy Nassar
    October 5th, 2009 9:52 pm

    Woohooo !!
    that was AWESOME!
    nice post!

  67. 68
    WDP
    October 5th, 2009 10:05 pm

    GREAT!!!!

  68. 69
    bijon
    October 5th, 2009 10:35 pm

    very very nice tutorial

  69. 70
    Remon
    October 5th, 2009 10:54 pm

    Great post.
    Really awesome.

  70. 71
    Niels Matthijs
    October 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.

  71. 72
    aSeed
    October 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

  72. 73
    Sylvain Gourvil
    October 5th, 2009 11:32 pm

    Nice “tutorial”. Very clear and clever. Always good to read basics :)

  73. 74
    bitelemental
    October 5th, 2009 11:40 pm

    Excellent. The power of CSS is incredible!

  74. 75
    Safi
    October 5th, 2009 11:42 pm

    Smashing as usual :) thumbs up

  75. 76
    Selvam
    October 5th, 2009 11:46 pm

    thanks…..nice tutor

  76. 77
    Rainer
    October 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.

  77. 78
    Richard Kean
    October 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

  78. 79
    Nicola
    October 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?

  79. 80
    สุดเดช
    October 6th, 2009 12:22 am

    nice thx for article

  80. 81
    Oliver
    October 6th, 2009 12:39 am

    thx
    was refreshing my memory with that

  81. 82
    David
    October 6th, 2009 12:53 am

    Hallelujah Smash Magazine!

  82. 83
    sophy
    October 6th, 2009 12:56 am

    Great! thank you so much to share this article

  83. 84
    Gjergji Kokushta
    October 6th, 2009 1:23 am

    Very nice tutorial, very useful – great job!

  84. 85
    Danilo
    October 6th, 2009 1:37 am

    Great, this kinds of articles is appreciated.

  85. 86
    Slavomir
    October 6th, 2009 2:11 am

    Very practical, simple and very useful guide… Thank you!!!

  86. 87
    Nikhil Kumar C
    October 6th, 2009 2:36 am

    Good!!!! Excellent article

  87. 88
    MaTYO
    October 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 :(

  88. 89
    Meg
    October 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 :)

  89. 90
    Josh
    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.

  90. 91
    rdam
    October 6th, 2009 4:12 am

    Excellent tutorial, very useful!
    please make some articles about ERGONOMIC DESIGN GUIDELINES or STANDARTS! for websites…
    thank you

  91. 92
    mustafa saraç
    October 6th, 2009 4:54 am

    @Soh Tanaka, welcome to Smashing Magazine. You’re best.

  92. 93
    Julius
    October 6th, 2009 4:55 am

    Very nice tutorial for newbies.

  93. 94
    Webstandard-Team
    October 6th, 2009 5:16 am

    Very nice overview, but don’t miss this “CSS Shorthand Properties” ressource!

  94. 95
    Nishin
    October 6th, 2009 5:28 am

    fantastic article…

    i am a beginner and this article cleared my doubts about padding, margin and float.

    thanks

  95. 96
    Thomas
    October 6th, 2009 6:07 am

    Best CSS tutorial I’ve ever seen, also emphasizes the current trends. Thanks!

  96. 97
    Radeksonic
    October 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.

  97. 98
    Martin Bentley Krebs
    October 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.

  98. 99
    teebee
    October 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. :}

  99. 100
    Ken
    October 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!

  100. 101
    Edward B
    October 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!

  101. 102
    creativele
    October 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.

  102. 103
    M@
    October 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@

  103. 104
    shylendhar
    October 6th, 2009 9:06 am

    great information

  104. 105
    NotAlame
    October 6th, 2009 9:45 am

    nice, thanks a lot!

  105. 106
    Niels
    October 6th, 2009 9:47 am

    Thank for this very useful tutorial! A lot of trying and messing around falls into place now!

  106. 107
    Amos Newcombe
    October 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?

  107. 108
    Russell
    October 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};
    }

  108. 109
    Kevin
    October 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.

  109. 110
    Kate Ebneter
    October 6th, 2009 12:03 pm

    Nice article, really. One thing: Would it be so hard to provide alternative CSS for a printable version? :-)

  110. 111
    steven khauo
    October 6th, 2009 12:14 pm

    Keep up the good work sophEr.

  111. 112
    Tanya
    October 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.

  112. 113
    Vamsi
    October 6th, 2009 12:47 pm

    Awesome … kick ass CSS skill booster

  113. 114
    Zissan
    October 6th, 2009 5:33 pm

    very useful for me, thanks!

  114. 115
    Nitesh
    October 6th, 2009 8:48 pm

    Nice.. Regarding Point no. 6.. — It doesn’t work in IE6.. any solution for this….

  115. 116
    Karen
    October 6th, 2009 8:52 pm

    this is the greatest article i have read in a while. great, great work! :)

  116. 117
    Maria Porto
    October 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;

  117. 118
    JSDESIGN
    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.

  118. 119
    Jorg
    October 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 ;)

  119. 120
    Ross Idzhar
    October 6th, 2009 11:55 pm

    I can’t bloody wait for the book!

  120. 121
    Onnay Okheng
    October 7th, 2009 12:09 am

    it’s nice bro..

  121. 122
    pinow
    October 7th, 2009 1:35 am

    Very good tutorial, nice fresh up :)

  122. 123
    Karl Mariner
    October 7th, 2009 1:40 am

    Thanks for the post…

  123. 124
    Umesh Y k
    October 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.

  124. 125
    Anoop
    October 7th, 2009 3:19 am

    Good and informative.

  125. 126
    Diego Restrepo
    October 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.

  126. 127
    Steve Fenton
    October 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!

  127. 128
    Ben Goode
    October 7th, 2009 6:47 am

    Great article, thanks!

  128. 129
    Daniel Lopes
    October 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 ;)

  129. 130
    Tai Travis
    October 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

  130. 131
    Dean Hayden
    October 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;
    }

  131. 132
    Hussain Cutpiecewala
    October 7th, 2009 10:30 am

    Thanks for such a nice tutorial :-)
    It will help me lot..

  132. 133
    hareesh
    October 7th, 2009 11:01 am

    where is the boookkkkkkkkk………….waiting for a long time…..:(

  133. 134
    Kuldip
    October 7th, 2009 11:23 am

    Very nice tutorial for beginners…thx a lot…

  134. 135
    phh
    October 7th, 2009 11:34 am

    Really great information here. Thanks so much.

  135. 136
    fillman
    October 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)

  136. 137
    Onthebuzz
    October 7th, 2009 1:49 pm

    A CSS rehash. Thanks

  137. 138
    Niels
    October 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.

  138. 139
    kamal
    October 7th, 2009 6:15 pm

    nice article you got here. Very useful for newbie like me :)

  139. 140
    AfTriX
    October 7th, 2009 8:52 pm

    This one is really helpful for beginner. Thanks a Lot for the Tutorial.

  140. 141
    Madeline Ong
    October 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? :)

  141. 142
    tashfeen
    October 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!

  142. 143
    Roie
    October 8th, 2009 2:56 am

    Excellent post, as usual.

  143. 144
    helaene
    October 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) ol and ul should 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 an h1, Back to Basics an h2, and Tips/Tricks an h3. Using small like this is presentational, rather than semantic.
    7) overflow:auto requires a set height
    8) the overflow:hidden suggestion 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. :)

  144. 145
    sharath
    October 8th, 2009 5:40 am

    awesome post.. very informative specially for beginners!

    thanks
    sharath

  145. 146
    paulie
    October 8th, 2009 12:31 pm

    Best article on CSS I’ve ever read. Thank you.

  146. 147
    blkdykegoddess
    October 8th, 2009 10:49 pm

    excellent article. you all never disappoint.

  147. 148
    Thapelo
    October 8th, 2009 11:41 pm

    Can’t wait to get started!

  148. 149
    tehkemo
    October 9th, 2009 12:37 am

    great guide for begginers, thanks for this, I atleast found another great resources for further education, thanks!

  149. 150
    Abdul-Basit Munda
    October 9th, 2009 11:53 am

    Excellent Article, very useful

  150. 151
    Vallard
    October 9th, 2009 3:56 pm

    Best article on CSS I have ever read. Very clear, clean, and illustrative. Thanks a bunch!

  151. 152
    Abdul Akbar
    October 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.

    http://www.quirksmode.org/css/clearing.html

  152. 153
    Alex
    October 11th, 2009 6:57 am

    Really like this summary / reference / how-to article.

    Motivating to become a bedder webber :)
    #hungry to learn more

  153. 154
    nes
    October 11th, 2009 4:56 pm

    wow.. these tips will help me a lot!!! thanks.. :)

  154. 155
    Thomas
    October 12th, 2009 4:53 am

    very good article. It explains quickly thew basics of CSS.

  155. 156
    muthiulhaq
    October 12th, 2009 9:41 pm

    excellent article, very use full thanks……

  156. 157
    Sarfraz Ahmed
    October 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

  157. 158
    ANTStorm
    October 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.

  158. 159
    ian
    October 13th, 2009 1:31 am

    great tutorial…
    i like it.. thanx..

  159. 160
    Selvam
    October 13th, 2009 2:41 am

    Nice round up……strong in basics….

  160. 161
    karthikeyan Bhaskaran
    October 13th, 2009 3:50 am

    Nice Tutorials and Explanations. But some what is missing to explain briefly…….

    In CSS Sprites

  161. 162
    tolga
    October 13th, 2009 1:04 pm

    very very very nice all in one css tutorial.

  162. 163
    Phuket Website Design
    October 13th, 2009 6:42 pm

    Ho Good Tutorial, Thanks a Lot for the Tutorial.
    Thanks krab

  163. 164
    sunil chandre
    October 14th, 2009 2:37 am

    Great tutorial!
    Thank you very much…!

  164. 165
    Liz H
    October 16th, 2009 10:37 am

    I learned a lot; thanks!

  165. 166
    beben
    October 16th, 2009 12:06 pm

    yeahhh…it’s a great magazine for blogger..hohohoho

  166. 167
    Hung Bui
    October 18th, 2009 3:58 am

    Brilliant. This would be something for me to read again and again to sharpen my CSS skill. Thanks

  167. 168
    Pol Moneys
    October 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

  168. 169
    Aaron
    October 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/

  169. 170
    Yoav Rios
    October 20th, 2009 2:15 am

    i liked the Post…
    are very useful!
    really nice
    Thank you

  170. 171
    Lucy
    October 21st, 2009 1:22 am

    Nice, again!

  171. 172
    canciller
    October 22nd, 2009 6:17 am

    0 to %100m for me … :))

  172. 173
    Rolando A. Petit
    October 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

  173. 174
    Santhy
    October 26th, 2009 1:27 am

    Very very useful tutorial. Thanks a bunch !

  174. 175
    divone
    October 27th, 2009 2:46 pm

    I’ve translated it to russian. )
    http://divone.ru/css-master-klass-osnovnye-priyomy/

  175. 176
    deepchand
    October 28th, 2009 3:15 am

    Greatest article that ever seen…..Thanks alot.

  176. 177
    Indrek
    November 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.

  177. 178
    volcanono
    November 3rd, 2009 1:24 am

    really good and useful article

  178. 179
    jann
    November 9th, 2009 1:17 pm

    Very timely article — I needed a ‘refresher’. The writing is very good… illustrative…and has some good tips.

  179. 180
    Rajnikant
    November 16th, 2009 2:02 am

    Really nice to start CSS site

  180. 181
    mrjuls
    November 19th, 2009 2:26 am

    Thank you, it’s one of the best tutorials I’ve ever seen!

  181. 182
    pouzeot
    November 23rd, 2009 7:41 pm

    Really useful tutorial. Thank you.

  182. 183
    R Aflec
    November 26th, 2009 3:45 am

    “Another great article to read while coding web layouts:

    http://www.xhtml-css-code.com/html/things-to-remember-while-coding-a-website-to-make-it-search-engine-friendly

    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.

  183. 184
    Christopher Rees
    December 10th, 2009 6:48 am

    Great 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.

  184. 185
    Deadly Satsuma
    December 15th, 2009 2:31 am

    Great article, incredibly well written and easily understood.

    Well done!

  185. 186
    Lior
    December 16th, 2009 6:45 am

    This is definitely the best tutorial ever…
    Thank you for your great site!

  186. 187
    Gerard
    December 17th, 2009 12:08 pm

    Thank’s a lot for your time, I have learned a lot ^^

  187. 188
    Anoop
    December 25th, 2009 10:23 pm

    Great article…I have learned something…

  188. 189
    Zero
    December 27th, 2009 2:35 am

    Great and useful articles. I like very much. Thanks smashing team.

  189. 190
    mfakira
    December 31st, 2009 2:09 am

    very nice tutorial

  190. 191
    secure-bit
    January 21st, 2010 1:52 am

    Good Article coud use some tipps of css.

  191. 192
    sidman25
    January 25th, 2010 10:16 am

    Soh 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!

  192. 193
    Emy
    February 2nd, 2010 4:23 pm

    very useful tutorial.greeting from romania!

  193. 194
    website design arizona
    February 5th, 2010 3:32 am

    CSS is fundamental for evry designer & i found this post very helpfu in browser hacking too…i will definitely share is to my colleagues.

    Thanks

  194. 195
    drink coasters
    February 5th, 2010 3:41 am

    Great css tips…
    Thanks

  195. 196
    Daniel
    February 9th, 2010 1:32 pm

    Thanks a lot – great article !

  196. 197
    felipe saavedra
    February 15th, 2010 5:03 am

    muchas gracias…

    saludos,
    Felipe…

  197. 198
    Ste
    February 27th, 2010 11:57 am

    Nice article. I found an example of vertical & horizontal aligning a while ago that doesn’t disappear off the top & left of the page if it’s resized too small. Here’s the url: http://www.pmob.co.uk/pob/hoz-vert-center.htm

  198. 199
    sytes
    March 14th, 2010 10:14 pm

    Thank you
    web 2.0 strict css2
    sytes.in.th

    i have css3 it not support IE8

  199. 200
    YeNaingTun
    March 16th, 2010 8:21 am

    It’s really great and amazing.Before i didn’t know exactly how to solve the problems what i had especially in CSS.But now i have got the solutions after i read your post.
    thanks you so much.
    :D

  200. 201
    Jamarchi
    March 20th, 2010 5:37 pm

    Hey man, great tutotial
    I have a problem, I have tried to center a layout but I couldn’t, i have used this scrip
    width: 867px; /*–Specify Width–*/
    height: 750px; /*–Specify Height–*/
    position: absolute; /*–Set positioning to absolute–*/
    top: 50%; /*–Set top coordinate to 50%–*/
    left: 50%; /*–Set left coordinate to 50%–*/
    margin: -375px 0 0 -434px; /*–Set negative top/left margin–*/

    but the layour isn’t in the top margin, it is up of the top, can you please help me ?
    Regards

  201. 202
    mehdy
    March 23rd, 2010 1:09 am

    Thank you so much for this clear and beautiful tutorial,
    i think you should be rewarded for this nice tut

    Thanks so much

  202. 203
    Harry
    April 20th, 2010 11:40 pm

    As usual a wonderful post. Didn’t want to comment but I guess it needs and comments are always welcome for the author and for the website as well.

  203. 204
    Srinivas
    May 2nd, 2010 7:24 pm

    Really great article, very useful tutorial. Thanks to posting.

  204. 205
    Majed
    May 3rd, 2010 12:12 am

    Nice tutorial buddy

  205. 206
    Eilonvi
    May 5th, 2010 11:09 pm

    Best tutorial ever!!!!
    Thank you for the simple, clear comprehensive evrything-i-needed-to-know tutorial

  206. 207
    Sid
    June 1st, 2010 7:49 pm

    This is great! Very well explained and gave me answers to many questions that I had. This has been my homepage for a while haha!

  207. 208
    Imam Zatnika W
    June 5th, 2010 5:57 am

    Thanks for useful tutorial… ;-) From : Muslim Indonesia

  208. 209
    magori
    June 11th, 2010 10:59 pm

    Awesome tutorial i learn a lot

  209. 210
    Xcellence IT
    July 13th, 2010 8:43 pm

    Great article,

    thank you

  210. 211
    iTechRoom
    July 31st, 2010 10:28 pm

    Simply the great post, Thanks for sharing.

  211. 212
    Ugo
    August 22nd, 2010 9:26 pm

    Great tutorial, very simple yet very comprehensive

    Thanks

  212. 213
    naveenkumar
    August 27th, 2010 1:45 am

    Nice artical…i got many ideas after read this..Thanks a lot..

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!



Advertisement Advertise with us!
Add this widget to your site!
Visit job board Post your job