我正在重用一个具有:在psuedo元素之前的类,并且当元素在具有特定类的元素中时想要覆盖属性:
我目前有:
.section-container.accordion .title::before {
content: "\e025";
font-family: "GeneralFoundicons";
speak: none;
display: inline;
font-size: 0.8em;
display: block;
position: absolute;
right: 18px;
top: 18px;
-webkit-transition: 0.3s ease;
-moz-transition: 0.3s ease;
transition: 0.3s ease;
}
这很好,但在特定的页面上,我想top:0;
如何实现这一目标?
答案 0 :(得分:1)
就像定义特定的类名
一样简单 .your-specific-classname-page .section-container.accordion .title::before {
top: 0;
}