Reputation: 96494
I'm familiar with
height
and
min-height
but in the code I am looking at there is _height: 100px What's that about? Is it an IE thing?
_height: 100px
Upvotes: 7
Views: 3644
Reputation: 887547
That's a CSS hack.
IE6 will ignore the underscore and read it as height; real browsers will (correctly) ignore the whole line.
Upvotes: 16