我正在尝试选择具有特定数据属性的元素的第一个和最后一个子元素.
:first-child选择器工作正常,但是:last-child不工作.我真的不知道是什么原因引起的.我检查了错别字.
CSS
.element[data-type='element']:first-child { padding-left: 0; background-color:red !important } .element[data-type='element']:last-child { padding-right: 0; border-right:0; background-color:red !important; }