Web Standards Tips

Practical advice for building websites with web standards

Web Standards Tips: browser

You are currently browsing the Web Standards Tips archives for the tag browser.

Easy clearing of floats

By Isofarro on November 18th, 2008 - 2 comments

One of the main methods of creating stable layouts is to ensure that elements that contain floated elements clear these floats. Given an element with an id of wrapper, the styles needed to easy clear any contained floats is: #wrapper:after { content: “.”; display: block; height: 0; clear: both; visibility: hidden; } #wrapper { zoom: […]

Copyright © 2007 - 2009, isolani