IE Hacks
The following conditional comment is being picked up by IE5, IE5.5 and IE6:
[code]
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="all-ie.css" />
<![endif]-->
[/code]
The
!ie identifier allows the property to be applied in
IE 7 and below. It may or may not work in future versions. Warning: this uses
INVALID CSS!
Example how to...
Read More »
CSS Reset
The goal of a reset stylesheet is to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, and so on. In a nutshell, a CSS reset removes default styling from page elements so that you are “starting fresh” with the attributes you choose to apply. This is important for...
Read More »