CSS Attribute Selectors

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;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值