2017-09-01
1. 属性选择器
属性选择器的链接:
E[attr]: div[title]{background:blue;};
E[attr=”value”]:div[title="name"]{background:blue;};
E[attr~=”value”]( 词列表以空格隔开:<div title="age address">div3</div>);
E[attr^=”value”]:属性值是以value开头的;
E[attr$=”value”]:属性值是以value结束的;
E[attr*=”value”]:属值中包含了value;
E[attr|=”value”]:属性值是value或者以“value-”开头的值
2. 结构选择器知识点
1.结构性伪类:
(1) 父级下同级别子元素伪选择器:nth-child(n),nth-last-child(n);
(2) 父级下的同类型的标签:nth-of-type(n),nth-last-of-type(n);
3.伪类:
target:
<html>
<head>
<style>
:target
{
border: 2px solid #D4D4D4;
background-color: #e5eecc;
}
</style>
</head>
<body>
<h1>这是标题</h1>
<p><a href="#news1">跳转至内容 1</a></p>
<p><a href="#news2">跳转至内容 2</a></p>
<p>请点击上面的链接,:target 选择器会突出显示当前活动的 HTML 锚。</p>
<p id="news1"><b>内容 1...</b></p>
<p id="news2"><b>内容 2...</b></p>
<p><b>注释:</b> Internet Explorer 8 以及更早的版本不支持 :target 选择器。</p>
</body>
</html>
网友评论