The ball is in motion to replace the current doctype:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
with it’s standards-mode-triggering counterpart:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
This could potentially break existing pages in IE but it’s a move forward towards a more accurate rendering of the page cross-browser.
It’s getting difficult to maintain so many different renderings […]
I thought I would share the CSS clearing method I am using these days - as it’s helped keep things much simpler.
When an element is floated it’s removed from the normal flow of the document and escapes the parent unless something clears the floats and forces it to stay within it’s parent element. Many clearing […]