Home  >  Article  >  Web Front-end  >  CSS3 [attribute^=value] 选择器_html/css_WEB-ITnose

CSS3 [attribute^=value] 选择器_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:18:20990browse

定义和用法

[attribute^=value] 选择器匹配元素属性值带指定的值开始的元素。

 

浏览器支持

所有主流浏览器都支持[attribute^=value] 选择器。

注意: [attribute^=value]在IE8中运行,必须声明

 

实例

设置class属性值以"test"开头的所有div元素的背景颜色:

div[class^="test"]{background:#ffff00;}

在线运行

 

 

相关阅读:

  • CSS 参考手册
  • CSS 选择器
  • CSS 教程
  • Statement:
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn