html 5的CSS3中新增了哪些选择器?

html-css027

html 5的CSS3中新增了哪些选择器?,第1张

"CSS3中新增了3个选择器:

E[attr^=""value""]——属性值以value开头

E[attr$=""value""]——属性值以value结尾

E[attr*=""value""]——属性值包含value

通过选择器,可以快速匹配不同类型的属性。

例如:

a[href$=”.html”] 匹配所有以.html结尾的超链接。

div[id*=”primary”] 匹配所有id中包含primary的div 不知道我写的清不清楚,你可以去教程里面学一学,我分享给你,记得把分给我哈

http://video.sina.com.cn/playlist/5772542-1866650682-1.html#101775887"

css3不是html5的,两个不同。

属性选择器就是属性选择器,没有什么几个,你是问属性新增了几个吧?

下面的是css3新增的选择器:

element1~element2p~ul选择前面有 <p>元素的每个 <ul>元素。3

[attribute^=value]a[src^="https"]选择其 src 属性值以 "https" 开头的每个 <a>元素。3

[attribute$=value]a[src$=".pdf"]选择其 src 属性以 ".pdf" 结尾的所有 <a>元素。3

[attribute*=value]a[src*="abc"]选择其 src 属性中包含 "abc" 子串的每个 <a>元素。3

:first-of-typep:first-of-type选择属于其父元素的首个 <p>元素的每个 <p>元素。3

:last-of-typep:last-of-type选择属于其父元素的最后 <p>元素的每个 <p>元素。3

:only-of-typep:only-of-type选择属于其父元素唯一的 <p>元素的每个 <p>元素。3

:only-childp:only-child选择属于其父元素的唯一子元素的每个 <p>元素。3

:nth-child(n)p:nth-child(2)选择属于其父元素的第二个子元素的每个 <p>元素。3

:nth-last-child(n)p:nth-last-child(2)同上,从最后一个子元素开始计数。3

:nth-of-type(n)p:nth-of-type(2)选择属于其父元素第二个 <p>元素的每个 <p>元素。3

:nth-last-of-type(n)p:nth-last-of-type(2)同上,但是从最后一个子元素开始计数。3

:last-childp:last-child选择属于其父元素最后一个子元素每个 <p>元素。3

:root:root选择文档的根元素。3

:emptyp:empty选择没有子元素的每个 <p>元素(包括文本节点)。3

:target#news:target选择当前活动的 #news 元素。3

:enabledinput:enabled选择每个启用的 <input>元素。3

:disabledinput:disabled选择每个禁用的 <input>元素3

:checkedinput:checked选择每个被选中的 <input>元素。3

:not(selector):not(p)选择非 <p>元素的每个元素。3

::selection::selection选择被用户选取的元素部分。3

新增的属性的话,太多了,自己看:http://w3school.com.cn/cssref/index.asp

将内容取值为属性id的取值。举例

<style>

#myID:after{ content:attr(id)}

</style>

<div id="myID" style="content:attr(id)"></div>

于是页面会显示“myID”,也就是属性id的取值myID