(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/webkaifa/)1、选择器(child selector)如果你想在IE中隐藏一个CSS定义,可以使用子选择器。
css部分:
htmlbody p {
/* declarations */
}
css部分:
* html p {
/* declarations */
}
css部分:
/* */
* html p {
declarations
}
/* */
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/webkaifa/)1、选择器(child selector)如果你想在IE中隐藏一个CSS定义,可以使用子选择器。
htmlbody p {
/* declarations */
}
* html p {
/* declarations */
}
/* */
* html p {
declarations
}
/* */