css在不同浏览器中的唯一标识以height属性为例
内容摘要
复制代码代码如下:
height:73px; /*正常浏览器*/
[;height:50px;] /* chrome */
-moz-height:73px; /*firefox*/
_height:73px; /*IE6*/
*height:73px; /*IE7*/
heig
height:73px; /*正常浏览器*/
[;height:50px;] /* chrome */
-moz-height:73px; /*firefox*/
_height:73px; /*IE6*/
*height:73px; /*IE7*/
heig
文章正文
复制代码
代码如下:height:73px; /*正常浏览器*/
[;height:50px;] /* chrome */
-moz-height:73px; /*firefox*/
_height:73px; /*IE6*/
*height:73px; /*IE7*/
height:73px\9; /*IE8*/
代码注释