Can anybody tell me what does
*width:auto;
mean in css?
For instance:
div.ReportingControls dd { width:450px; *width:auto; }
thanks
This is a CSS hack for IE. Only IE7 and below will use the width of auto, not 450px ;.
Microsoft uses conditional comments instead of conditional hacking.
This is a CSS hack to install on Internet Explorer 7 and below . And it is not recommended to use in the real world.
I think this is some kind of trick for browser compatibility as described in this blog
Source: https://habr.com/ru/post/1314792/More articles:NSTextView Insert Line Break - objective-cPerformance difference between Iterator class and foreach construct - javaSend and receive IPv6 local UDP multicast datagrams in Python? - pythonIs proxy authentication possible using the SQL Server JDBC driver? - javaHow to make a game in javascript? - javascriptA simple, non-network example of Twisted / PyGTK - twistedbuffer types - cAndroid internal and external storage - androidIt is not possible to change the global int, but it can change the list. How? - pythonUser drawing with Android flash navigator - androidAll Articles