Css选择器
<body>
<style>
h1 {background:red} /* <!-- 标签选择器 -->*/
h2 strong{background:green} /* <!-- 派生选择器 -->*/
#h3 {background:blue} /* <!-- id选择器,【#】区分 -->*/
.h4 {background:yellow} /* <!-- class选择器,【.】区分 -->*/
[title=W3School]{background:gray;} /* <!-- 属性选择器 -->*/
</style>
<h1>标签选择器</h1>
<h2>标签<strong>派生选择器</strong></h2>
<h3 id="h3">id选择器</h3>
<h4 class="h4">class选择器</h4>
<h5 title="W3School">属性选择器</h5>
</body>

浙公网安备 33010602011771号