我code:在這種情況下,我不能使用:first-child選擇器嗎?
<div class="allegati-item">
<div class="allegati-titolo">Download</div>
<a class="allegati-link" href="/documenti/DocumentoTest.pdf">Link1</a>
<a class="allegati-link" href="/documenti/DocumentoTest.pdf">Link2</a>
</div>
.allegati-link
{
border-top:1px solid #FF0000;
display:block;
margin-bottom:4px;
}
.allegati-item a.allegati-link:first-child
{
border:0;
}
我想在第一allegati-link
元素刪除邊界,但因爲有前一個div中,allegati-item
裏面,看來這可能是不可能的?
+1涵蓋所有解決方案。 –
@RobW不是所有的,':nth-type-type(1)'都是錯過的) – Engineer
@Engineer我省略了這個,因爲顯然不需要;)你可能會喜歡這些選擇器。 – Christoph