What does "_hight" mean in css?

I am familiar with

height 

and

 min-height 

but in the code I'm looking at is _height: 100px What does this mean? Is this an IE thing?

+6
source share
1 answer

This is a CSS hack .

IE6 will ignore the underscore and consider its height ; real browsers will (correctly) ignore the entire line.

+15
source

Source: https://habr.com/ru/post/914239/


All Articles