这是我正在使用的当前css但是它设置了我不想要设置的类广告显示无显示无。以及
#parent :not(.firstchild) {
display:none;
}
这是html
<div id="parent">
<div class="firstchild"></div> <----- I dont want this set to display none
<div class="secondchild"></div><----- I want this set to display none
<div class="thirdchild"></div><----- I want this set to display none
</div>
然而它将all设置为:none ????。
一些帮助会很棒:)
答案 0 :(得分:1)
if(type.Name.StartsWith("<>"))
#parent div:not(:first-child) {
display:none;
}
答案 1 :(得分:0)
我实现了这种方式,我认为这是一种解决方法:
#parent div {
display: none;
}
#parent div.firstchild {
display: initial;
}
希望它有所帮助。