课程
/前端开发
/HTML/CSS
/CSS深入理解之absolute
.list:after { content:attr(data-index);
这个attr(data-index)是什么鬼
2015-07-20
源自:CSS深入理解之absolute 7-4
正在回答
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).
举报
理解CSSposition:absolute声明,掌握position:absolute高级应用
2 回答:before和:after这么神奇的
3 回答额。这里.close为什么用margin属性而不用top和right属性呢?
2 回答如果移除了absolute属性
3 回答怎么理解图片的默认属性是inline-block
3 回答不太懂