Michael Durrant
Michael Durrant

Reputation: 96494

what does "_height" mean in css?

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?

Upvotes: 7

Views: 3644

Answers (1)

SLaks
SLaks

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

Related Questions