问答详情
源自:7-4 高度自适应的九宫格效果

有一个神奇的css属性值不懂


.list:after {
 content:attr(data-index);

这个attr(data-index)是什么鬼

提问者:不二_0003 2015-07-20 20:12

个回答

  • 猪脚啦
    2016-03-18 19:49:47

    content表示的是在html中加上的内容,也就是加上attr(data-index);的值,其中attr(data-index)指的是<div class="list" data-index="1"></div>中的属性data-index的值,attr和js相似就是获取div标签中的某个属性的值。

  • 孙小白
    2015-12-26 15:30:23

    在list类后加上伪类after,伪类的内容是属性data-index的值

  • Yvonne_D
    2015-11-03 18:01:41

    Sets the content as one of the selector's attribute.The attr() property inserts a specified attribute's value after the selected element(s).