CSS Gen. Question!
CSS Gen. Question!
Out of context: Reply #7
- Started
- Last post
- 16 Responses
- version30
in your css, anything that is preceeded by *html is only seen by ie
so height issues would be solved this way
#your .item {
min-height:200px;
}*html #your .item {
height: 200px;
}