CSS上的not()選擇器有問題。:CSS上的not()選擇器
我有這樣的代碼:
<div class="group">
<div role="layer" class="one">Layer</div>
<div role="layer" class="two">Layer</div>
<div role="layer" class="three">Layer</div>
<div role="layer" class="four">Layer</div>
</div>
這個CSS:
div[role="layer"]{
width: 100px;
height: 25px;
border: 1px solid red;
border-radius: 5px;
float: left;
}
.group > [role="layer"]:first-child{
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.group > [role="layer"]:last-child{
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.group [role="layer"]:not(:first-child){
border-radius: 0;
}
我想要做的是使第一和最後一層有圓角,但而不是其他層。正如你所看到的,我可以使第一層沒有邊界半徑,但是當應用:not(:first-child)選擇器時,它會使最後一層發生變化。
如果有人能理解我的觀點,我會非常感謝您的幫助。
神。我向上帝發誓我嘗試了很多次,但沒有奏效......但謝謝你:) –