html


Browser specific CSS

A month ago I wrote about how to write IE specific CSS code, it is all fine, but what should be done if you have to pass W3c Validation (IE hack is not specified in any CSS standard). After looking around a bit I found out, that it is batter to make one CSS file [...]

IE specific CSS

Was experimenting a little the other day, and found a little hack for CSS, it only effects IE and leaves FF alone. CSS CODE [crayon lang="css"]* div .test { background-color: black; }[/crayon] HTML CODE [crayon lang="html"]<div class=”test”>Test</div>[/crayon] This will change the background color only in IE, and not in FF. It is usefull if your [...]