我有许多CSS类别1-n,我有以下代码为所有这些分配属性:
[class*="parentcategory"] { float: left; }
现在他们中的一些还有:: before和:: after,.eg .parentcategory1::before
的伪元素,我很难将属性分配给所有这些,因为我有" parentcategory&之间的类别编号#34;例如" ::之前"
有没有办法解决这个问题?
非常感谢
大卫
答案 0 :(得分:1)
似乎工作得很好。这有什么问题吗?
[class*="parentcategory"] {
color: red;
}
[class*="parentcategory"]::before {
color: black;
content: '::before';
}

<div class="parentcategory1">
parentcategory1
</div>
<div class="parentcategory2">
parentcategory2
</div>
&#13;