不二_0003
2015-07-20 20:12
.list:after { content:attr(data-index);
这个attr(data-index)是什么鬼
content表示的是在html中加上的内容,也就是加上attr(data-index);的值,其中attr(data-index)指的是<div class="list" data-index="1"></div>中的属性data-index的值,attr和js相似就是获取div标签中的某个属性的值。
在list类后加上伪类after,伪类的内容是属性data-index的值
Sets the content as one of the selector's attribute.The attr() property inserts a specified attribute's value after the selected element(s).
CSS深入理解之absolute
51956 学习 · 254 问题
相似问题