Creating a CSS layout from scratch
8. Some basic text styles
Sweet jesus! Are you sick of looking at those awful background colours or what?!
Get rid of them. Rip them all out except for the red navigation.
That looks a little better, but the text still looks horrible. Lets set a global font family, colour, and size to use as a nice base. The font attributes we set on the body will automatically inherit down to any other text in the site unless specifically overridden with another style. Make a new CSS rule just before the “hidden” class near the top of the stylesheet:
body {
font-family: Arial, Helvetica, Verdana, Sans-serif;
font-size: 12px;
color: #666666;
background: #ffffff;
}
The stuff above is pretty self explainitory.
If everything is going according to plan, you should be looking at something like this:

What this needs is some padding to separate those blocks of content from each other.
According to the design, the gap below the content headings is roughly 15px, and the gaps below each paragraph are around 15px. So lets grab those 2 css rules we made earlier and apply padding-bottom rules to them:
#content h2 {
margin: 0;
padding: 0;
padding-bottom: 15px;
}
#content p {
margin: 0;
padding: 0;
padding-bottom: 15px;
}
We also need 25px of padding around the whole content div, and the whole padding div, giving them some space to breath.
This part SHOULD be easy. In theory you would just set padding: 25px; on the divs, but sadly, due to problems in Internet Explorer, we can’t do this.
The IE problem is described in detail here.
There are 2 possible ways to tackle this problem, one involves writing some funky CSS “Hacks” to hide certain css rules from one browser, while showing it to another, but because padding is something we use a lot, we’re going to do it the other way.
The other way is to insert an additional div inside the divs which we want padded, and set their class to “padding”. Padding is the only thing that will be applied to these padding divs.
The reason this works is that the padding divs don’t have a set width. As a rule, try not to add padding and a static width or height on the same element.
<div id="sidebar-a">
<div class="padding">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam gravida enim ut risus.
Praesent sapien purus, ultrices a, varius ac, suscipit ut, enim. Maecenas in lectus.
Donec in sapien in nibh rutrum gravida. Sed ut mauris. Fusce malesuada enim vitae lacus
euismod vulputate. Nullam rhoncus mauris ac metus. Maecenas vulputate aliquam odio.
Duis scelerisque justo a pede. Nam augue lorem, semper at, porta eget, placerat eget,
purus. Suspendisse mattis nunc vestibulum ligula. In hac habitasse platea dictumst.
</div>
</div>
Do the same for the content div.
Now in the stylesheet we will create 2 new rules, shown here in green:
#sidebar-a {
float: right;
width: 280px;
}
#sidebar-a .padding {
padding: 25px;
}
#content {
margin-right: 280px;
}
#content .padding {
padding: 25px;
}
Using the same method as we did before, we have selected only the elements with a class=“padding” that are children of the #sidebar-a, or #content divs.
The leading (vertical space between lines of text) on the content text and sidebar text should be larger, according to the graphic draft. In CSS, leading is set with the line-height attribute. Lets add a line height of 18px:
#sidebar-a {
float: right;
width: 280px;
line-height: 18px;
}
#content {
margin-right: 280px;
line-height: 18px;
}
Moving on, the heading <h2>‘s that we added look pretty ugly. Because the font they are using isn’t a web font, we are going to have to replace them with images. Create 2 images like the ones below, and put them in the /images/headings/ directory


Replace the heading text with these images, but remember to keep the <h2> tags around the image tags, and remember to put alt attributes on the images. Alt attributes are designed to display as an alternative to the image if a user is viewing the page in a browser that does not support images, or has images turned off. It is also useful for search engine spiders, as they can not understand images.
<h2><img src="images/headings/about.gif" width="54" height="14" alt="About" /></h2>
<h2><img src="images/headings/contact.gif" width="98" height="14" alt="Contact Us" /></h2>
Its starting to take shape. You should be looking at something like this:

« Previous 1 2 3 4 5 6 7 8 9 10 11 12 Next »
70 Comments
-
Arizona Web Design says:Thanks so much for sharing all the information, I wasn’t hoping to find such complete tutorials for free. It may be an old article but the basic principles of website building and web design have remained the same.
-
Jason says:I just finished this tutorial, and although it was not current, it was very helpful. I have published my completed example (with a link to this page)at http://bit.ly/d9IEIb for anyone to check out. I will post links to the menu images and css file on my blog. Thank you for providing this resource. Can’t wait to see the update.
-
didik edhi says:It’s very usefull for me as newbie.good site..all the best.
-
Preston Racette says:Thanks so much for sharing all the information
-
Mike says:I have a question…I normally use tables to do my layouts, but now I’m using CSS but one thing I can’t quite figure out is how to use percentages correctly. With tables its quite easy, if you want the height the whole browser you use 100% and it’ll stretch whichever cell has a “*” in it. How would you accomplish this with css? I want to color the “sidebar” of this tutorial, but if you just add a background it only colors where the text is. I want it to span all the way from the bottom of the header image, to the footer. Does anyone have any information that could help me out or possibly a link to another article that covers this?
-
adam says:thanks a lot for this great tutorial..
easy to understanding ;) -
Harjit says:hey steve, this site tutorial is amazing, it actually proved to be very handy in understanding css and other functions of html. Though I’m getting stuck in one area, say if i create a button on the menus, how do i gett he onmouseover attribute to work? I have tried almost everything and for some reason I can’t get it to work? Can you help me…cheers.
-
Oliver says:Hiii Steve!
Great job! I know now why my “DIVs” didn’t work. You explain every parameter let us see the result and told us how to correct the bad things.
This way of doing things is more interesting than gave us a lot of code to copy/Paste wihtout a comprehension.Thanks a lot, I’m waiting for the new one.
-
Nick says:Thanks for this tutorial. I learned a lot, and it helped to clear up a lot of confusion about float based layouts. The only criticism I can give is that things got way too complicated at page 11. Everything up to that point was great, but the hacks and the advanced CSS just to do a menu, that stuff went over my head and I thought was not a good progression to the flow of the first 10 pages of your tutorial! Other than that, I found it very useful and look forward to visiting your site again.
-
php tutorial says:Nice article. Even if it is old, but it contains useful information.
-
Bashar says:Really looking forward to the updated version. It’s the best CSS layout tutorial I found honestly
-
Hassan Naqvi says:This article had been my doorway into the css world. Before this article I was designing websites the old-fashioned way using tables. This article is written in such a way that I still refer to it for inspiration and making my css simple.
Looking forward to the new one. Hope this one will still be available.
-
Medyum Hoca says:Really looking forward to the updated version. It’s the best CSS layout tutorial I found honestly
-
icon creation says:Many applications pack all their data files into a single file, using internal markers to discern the different types of information contained within. The data files used by games such as Doom and Quake
-
Arch-Area says:Without this article, my game would never exist :) Cheers!
-
sunny says:Thanx!! a lot Steve for such an easy and understandable tutorial. Specially the float & clear part is very clear and easy to understand.
Looking forward to see more such articles.
Thanx!! Buddy
-
sunny says:Hi!! Steve,
I have a problem, when I am publishing my file in Mozilla Firefox, margin: 0px, padding: 0px; for html, body selector is not supporting & it shows the default 8px margin from top. Main nav is also having some problem.
Please help….
Thanx!!
Sunny
-
web designer india says:wow good tutorial its very use full
-
stendmaster says:Если бы я все это знал до того, как слизал сайт по шаблону.
-
nzyme says:now this is something interesting.its an excellent tutorial !!! keep up the good work. I did mess up at some places, but it was really helpful :)
-
Chris says:Awesome tutorial. It’s the first one I actually understood in depth. I noticed that no position attributes were used. I always am getting confused by absolute vs. relative. Why would you use those if you can lay a page out like this? What are the benefits and differences between them? If anyone could answer this I would greatly appreciate it. Maybe even pointing me to another tutorial that is as clear as this one would be extremely helpful.
-
ENGLISH34Valerie says:Houses are quite expensive and not every person is able to buy it. Nevertheless, <a href=“http://bestfinance-blog.com/topics/mortgage-loans”>mortgage loans</a> was invented to help people in such kind of cases.
-
Pranav says:Hi Steve! Thanks for this awesome tutorial! I have been running websites (plain html/blogs/forums etc) since 2006 and have tried my luck at many CSS tutorials till now. This was the first time I was able to read and understand it fully… Thanks a lot!!
-
bee says:Great tutorial until I got up to page 11! For the life of me I can not get the navigation to work. Ive been throught it a million times but the navigation is not showing up. The click throughs work so I know its there but I cant see anything! Can anyone help?! It would be a shame to give up now when Im so close.
-
Bee says:Thanks Steve! I just overwrote some of my code with yours. Just a couple of things I noticed which is giving me a bit of headache.
Firstly the padding on the side bar doesnt seem to be working anymore?
#sidebar-a .padding {
padding: 25px;
}
I still cant get these clicked images to work. Please see below to see how I am doing it. I have done the ‘services’ class to show you what I did. (Just so you know, all my images are in one folder local to the css)body.about #header {
height: 150px;
background: #db6d16
url(images/about.jpg);
}
body.services #header {
height: 150px;
background: #db6d16
url(images/services.jpg);
}
Hope you can help! Thanks again. -
Praca says:Great tutorial I was looking for sth like this long time, thanks a lot.
-
Jason W says:This is by far the best CSS tutorial I have gone through. Thanks so much for this, I know this is an old article but it’s relevant and very useful even today.
-
iFranzi says:nice tut.
-
Nirupam Burman says:Hi Steve,
Awesome work by you,2 thums up.I always had/has/have problems using css with div..alignment and making sections etc..now i am bit confident..just if you could let us know a lot of generic hacking techniques to overcome browser problems it would be so useful because it adds up value to others experience.
Just like the way you have explained this tutorial it would be just great.
Eagerly,waiting for your reply. -
Nirupam Burman says:Its awesome tutorial..2 THUMS UP.i think i am more confident now with div/css..alignment and positioning was the problem i was facing..anyways,it would be really helpful if you could teach css hacks and some of the generic hacks and best practises.
And also css alignment of div ..to design any type of site.. -
LearnWebsiteDesign.com says:This is one of the tutorials that first helped me to understand how to create css layouts.
Thanks
Jose

Hey Steve - old article or not this is a nice & simple explanation of how ‘float’ works. I’ve always battled to get my head around those ... cheers!