我有以下ol
:CSS目標OL的第二個元素
<ol class="breadcrumb">
<li><a href="/home">home</li>
<li><a href></a></li>
<li><a href="/registration">registration</li>
</ol>
我需要爲目標的ol
的第二個孩子,並隱藏它,但無論我嘗試 - 它是不成功的。
我有特里結構如下:
ol.breadcrumb:second-child{
display: none;
}
ol.breadcrumb.float-right:nth-child(2){
display: none;
}
ol.breadcrumb.float-right:nth-of-type(2){
display: none;
}
使用瀏覽器的開發人員工具('ctrl' +'shift' +'j'將其打開),在顯示當前頁面的DOM版本的標籤上Chrome)做一個'ctrl' +'f',然後輸入你的選擇tor'ol.breadcrumb:nth-child(2)'查詢是否會引發預期的元素。如果沒有,那麼去另一個。 – revo