Creating a CSS layout from scratch
6. Floats
Floats can be a tricky concept to get your head around. Basically a float is an element that is aligned against the left or right side of its container. (for more detail, read maxdesigns in depth introduction to floats).
In the case of this website, we are going to float our sidebar-a div to the right, with a width of 280px. Add the following to your CSS:
#sidebar-a {
float: right;
width: 280px;
background: darkgreen;
}
You have now successfully floated your first div, and you should now have a page that looks like this:

Just for testing purposes, replace the text in the content div to this:
<div id="content">
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>
Notice that the text in the content div wraps around the floated sidebar div, as shown below:

This isn’t what we want. We want the content div to sit along side the sidebar div, with its right edge against the left edge of the sidebar.
An easy way to achieve this in a float layout like this, is to put a right margin on our content div that is the same width as our sidebar, in this case 280px. This will push the right edge of the content away from the right edge of the page-container.
#content {
margin-right: 280px;
background: green;
}
Great, we’ve almost got the float layout sussed. But there’s one more thing we need to consider… what happens if the sidebar div is taller than the content div?
Lets see. Copy and paste this text into the sidebar div:
<div id="sidebar-a">
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>

Thats not what we want at all. The reason the footer hasn’t moved down is because the sidebar is ‘floated’ right.
Explanation: By default, any floated element will not push down elements that are below it. This is because floated elements are not considered part of the document ‘flow’. Its like they are on another layer ‘floating’ above the other elements, and becuase of this, it can’t effect their positions.
What can we do to fix this problem? Introducing the “clear” css property.
Add this to your stylesheet:
#footer {
clear: both;
background: orange;
height: 66px;
}
When an element has the clear property assigned, if it comes into contact with a float it is placed right below where that float ends. You can specify if it is effected by only left floats or only right floats, in this case we could use either ‘right’ or ‘both’. We’ll use clear: both just to be safe.

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