您的位置:首页 > Web前端 > CSS

CSS Attribute Selectors

2014-04-28 12:10 281 查看

Attribute Selector

可以对那些拥有指定属性属性值的HTML元素样式化设置。

Note: IE7 and IE8 support attribute selectors only if a !DOCTYPE is specified.

[attribute] Selector

The [attribute] selector 选择凡是拥有这个 attribute 的元素。如下例,选择所以含 target 这个属性的<a>元素

a[target]
{
background-color:yellow;
}

[attribute=value] Selector

The [attribute=value] selector 选择那些不仅包含 attribute 的元素,而且该属性值等于value才行。

a[target="_blank"]
{
background-color:yellow;
}

[attribute~=value] Selector

The [attribute~=value] selector 选择那些含 attribute 的元素,并且其属性值containing a specified word.

如下例,将选择所有含 title 属性的元素,title 的值可以是一系列由空格隔开的单词,其中包含单词 flower。

[title~="flower"]
{
border:5px solid yellow;
}

具体地,match with title="flower", title="summer flower", and title="flower new", but not
title="my-flower" or title="flowers".

[attribute*=value] Selector

The [attribute*=value] selector选择那些含 attribute 的元素,且contains a specified value. does not has to be a whole word!  

[class*="te"]
{
background:yellow;
}

与上面区别,只要属性值里包含te即可,不必是一个完整的单词。

[attribute|=value] Selector

The [attribute|=value] selector 选择那些包含 attribute 的元素, 且以指定的值开始
starting with the specified value.

[class|="top"]
{
background:yellow;
}

Note: The value has to be a whole word
必须是完整的单词, either alone, like class="top", or followed by a hyphen( - ), like class="top-text"! 

[attribute^=value] Selector

The [attribute^=value] selector 选择那些含 attribute 的元素,且
begins with a specified value. 区别于上例,does not have to be a whole word

[class^="top"]
{
background:yellow;
}

只要属性值以top开始即可,包含 [attribute|=value] 选择器的结果,因此范围比上面的选择器更广

[attribute$=value] Selector

The [attribute$=value] selector选择那些含 attribute 的元素,且以指定的值结束
ends with a specified value. does not have to be a whole word

[class$="test"]
{
background:yellow;
}

要求不严格,只要属性值的是以 test 结尾即可。

CSS 属性选择器可以用来个性化表格而无需使用class或ID

input[type="text"] {
width: 150px;
display: block;
margin-bottom: 10px;
background-color: yellow;
}

input[type="submit"] {
width: 120px;
margin-left: 35px;
display: block;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Attribute Selector