css樣式表中四種屬性選擇器1> 簡易屬性tag[class]{ font-weight:bold }It will affect all tag with any class.e.g. or 2>精確屬性值a[href="http://www.cnblogs.cn"][title="textTi....
css樣式表中四種屬性選擇器
1> 簡易屬性
tag[class]{ font-weight:bold } It will affect all tag with any class. e.g. <h2 class="old" > or <h2 class="new">
2>精確屬性值
a[href="http://www.cnblogs.cn"][title="textTitle"]{font-size:10%} It will affect <a href="http://www.cnblogs.cn"title="textTitle">
3>部分屬性值
類似使用perl中得匹配
p[class~="urgent"] {font-weight:bold;} input [type="checkbox"], input [type="radio"], input [type="file"] footer[role="contentinfo"] a
4>統配屬性
*[lang|="en"]{color:white;}
匹配連接lang或="en"字元的所有內容