标签:io 使用 ar 代码 on html c htm r
如果你想在IE中隐藏一个CSS定义,可以使用子选择器。
css部分:
html>body p {
/* declarations */
}
这种写法只有IE浏览器可以理解(对其他浏览器都隐藏)
css部分:
* html p {
/* declarations */
}
如果你希望IE/Win有效而IE/Mac隐藏,可以使用“反斜线”技巧。
css部分:
/* \*/
* html p {
declarations
}
/* */
标签:io 使用 ar 代码 on html c htm r
原文地址:http://www.cnblogs.com/linhh-ocean/p/3967781.html