CSS 使用条件注释和一个样式表来定位IE

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 使用条件注释和一个样式表来定位IE相关的知识,希望对你有一定的参考价值。

<style>
/* all browsers make border red */ 
	#anyelement { border : 2px solid red; } 
/* all browsers see this, but only IE thinks #IEroot exists as an element and makes border blue */ 
	#IEroot #anyelement { border-color : blue; } 
</style>

<body>  
	<!--[if IE]>  
    	<div id="IEroot">       
	<![endif]-->  
    	<p id="IE">This browser is IE.</p> 
        <p id="notIE">This browser is not IE.</p>  
	<!--[if IE]>  
    	</div>  
	<![endif]--> 
</body>

以上是关于CSS 使用条件注释和一个样式表来定位IE的主要内容,如果未能解决你的问题,请参考以下文章

使用条件注释和一个样式表瞄准IE

IE条件注释详解

css层叠样式表

css

前端css

如何使用有效的 CSS 定位 IE7 和 IE8?