Quantcast
Channel: w3cplus
Viewing all articles
Browse latest Browse all 1557

css覆写行内样式

$
0
0
<div class="block">
	<span style="font-weight: bold; color: red;">Hello World</span>
</div>

众所周知,行内式最高级的, 如果我们要想使用导入式的来取代这个行内式的最高级,该如何写呢,用!important 如:

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

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


Viewing all articles
Browse latest Browse all 1557

Trending Articles