what does "_height" mean in css?

css, height, html

Solution

That's a CSS hack.

IE6 will ignore the underscore and read it as `height`; real browsers will (correctly) ignore the whole line.

Problem

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?

Original source