CSS hacks
if we would like to specify the attributes(height,width,etc.) for the html elements to the target browsers like IE6,IE7,FF,etc..
sample code
div
{
height:25px //works in all browser
*height:50px //works in IE6 and IE7
-height:100px //works in IE6
}
