!important覆写css行内样式

时间:2025-01-22 17:05:20
<div class="block">
<span style="font-weight: bold; color: red;">Hello World</span>
</div>

众所周知,行内式*的, 如果我们要想使用导入式的来取代这个行内式的*,

该如何写呢,用!important 如:

.block span{
font-weight: normal !important;
color: # !important;
}

这样这个class为block的div使用的css将不再是行内式的,而是我们设置的!

important的,不过!important不支持ie6