Css hacks For IE6
when we give the width of a block level element by css maybe that width increase in IE6 or when we give padding or margin of an Element Ie6 may show some more Padding or margin.That time it needs to write the _padding or _margin and decrease the padding or margin or width;By writing _width or _padding will effect only in IE6 browser not in other browser. For Example
.style1{ width:500px;}
If this width will not show in IE6 perfectly then we need to write this class like
.style1{ width:500px;_width:490px;}
Ie6 will render the 2nd width but all browser will render the first width
No comments:
Post a Comment