A nice little CSS trick (well ok a hack!) for IE specific rules …
/* for Internet Explorer */
/*\*/
* html .classname {
height: 8em;
}
/**/
This very handy when fiddling with expanding div or wrapping content
A nice little CSS trick (well ok a hack!) for IE specific rules …
/* for Internet Explorer */
/*\*/
* html .classname {
height: 8em;
}
/**/
This very handy when fiddling with expanding div or wrapping content
Be nice. Keep it clean. Stay on topic. No spam.
You can use these tags:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>
if it’s only for ie6 you can just use * html .className{} and you don’t really need the rest of this escaping sequence before and after.