0
與span:last-of-type
我可以選擇其父母的最後一個span
元素。但有沒有解決方案可以選擇其父項的任何.class
的最後一個元素?像:最後一個孩子,其父母的一些.class
div .myclass:last-of-type {
...
}
來自:
<div>
<span class="myclass">One</span>
...
<i>text</i>
<b class="myclass">Two</b> <!-- this i want select -->
<b>more text</b>
<i>text</i>
<span>Three</span>
</div>
http://codepen.io/Chovanec/pen/lkojd
不幸的是,你目前在CSS中不支持你想要達到的目標。 'nth-type-type'和朋友只是對標籤名稱起作用。 –
可惜這是我的想法 – Michal