<html>
<head>
<style type="text/css">
.important {font-weight:bold;}
.warning {font-style:italic;}
.important.warning {background:silver;}
</style>
</head>
<body>
<p class="important">This paragraph is very important.</p>
<div class="important">
<p class="warning">This is a warning.</p>
</div>
<p class="important urgent warning">This paragraph is a very important warning.</p>
<p>This is a paragraph.</p>
<p>...</p>
</body>
</html>
多类选择器代码注意.important.warning 是挨着一起的
结果后代选择器
后代选择器注意.important .warning 是分开的
结果注意两者分别
网友评论