0
我在申請:last-of-type
和:before
時遇到問題。CSS:最後一種類型和:之前不工作
我有以下幾點:
.stepwizard-row:before {
position: absolute;
top: 0px;
content: " ";
width: 1px;
height: 100%;
background-color: #97D3FD;
}
.stepwizard-row:before:last-of-type {
position: absolute;
top: 0px;
content: " ";
}
但是,:before:last-of-type
似乎沒有任何效果。
我在做什麼錯?
請發表[mcve]。 – j08691
從規範 - *每個選擇器只能出現一個**僞元素**,如果存在**,它必須出現在代表選擇器主題的簡單選擇器序列之後。* – Harry
@Harry'::之前'是一個僞元素,但':last-of-type'是一個僞類。可能同時使用 – blonfu