I am trying to creat a layout like this:

My question is specifically centered around the five boxes. I struggle with the CSS to get it to work. Have you guys got a simple setup for such a layout?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I see that you have fixed width, so here is an example. Widths are not exact for your width, but you can esily set values you need. Main thing here is
float:leftin small_bottom class which makes div to be shown in one row.overflow:hiddenin bottom class makes that div wrap around floating divs (without that it will be shown like there is nothing inside). If you want this depend on browser window width – try using percents in width for small_bottom.HTML:
CSS:
Here is an example how it looks