Hello all,
I'm sure this queston has been asked before, but I searched and couldn't find it.
For my site, I chose to use a min-height for IE hack. The hack is as follows:
Code:
#portfoliotop {
min-height:200px;
}
*html #portfoliotop { height:200px; }
It works fine, however it will not validate with the W3C.
The error I get is:
Code:
Line: 0 Context : *
Parse Error - *html #portfoliotop { height:200px; }
Does anyone know a way around this? How I can use a min-height for IE hack, and still vaildate my site's css?
Thanks in advance.