CSS3属性选择器

来源:互联网 发布:东风3怎么运到沙特知乎 编辑:程序博客网 时间:2024/06/05 16:23
[foo^="bar"]   foo属性以bar开头
[foo$="bar"]   foo属性以bar结尾
[foo*="bar"]   foo属性包含bar


例子:

使用sprite技术整合图片
.icon{background-image:url();width:16px;height:16px;}
.icon-close{background-position:0px 20px;}
<span class="icon icon-close"></span>

使用属性选择器使代码简单:
[class^="icon-"]{background-image:url();width:16px;height:16px;}
.icon-close{background-position:0px 20px;}
<span class="icon-close"></span>
0 0
原创粉丝点击