Sin*_*nal 2 css internet-explorer
我想把padding-right:10px改为我的风格,仅用于IE,但我不希望其他浏览器渲染这个填充.任何只为IE定义填充的解决方案,但受Firefox,Chrome和其他保护?
<!--[if IE 6]>
<style type="text/css">
/*For example, this creates special instructions for IE 6*/
.myDiv { padding-right: 10px; }
</style>
<![endif]-->
Run Code Online (Sandbox Code Playgroud)
确保遵守规则的流程.你会想这个值覆盖任何以前的填充,正确的价值,所以把这个后您的其他规则.或者您可以在规则后添加!important,为您提供:
<!--[if IE 6]>
<style type="text/css">
.myDiv { padding-right: 10px!important;
</style>
<![endif]-->
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5341 次 |
| 最近记录: |