<div class="commentList">
<article class="comment " id="com21"></article>
<article class="comment " id="com20"></article>
<article class="comment " id="com19"></article>
<div class="something"> hello </div>
</div>
Chcę wybrać #com19
?
.comment {
width:470px;
border-bottom:1px dotted #f0f0f0;
margin-bottom:10px;
}
.comment:last-child {
border-bottom:none;
margin-bottom:0;
}
To nie działa, dopóki mam inne, div.something
ostatnie dziecko na liście commentList. Czy w tym przypadku można użyć selektora ostatniego elementu podrzędnego, aby wybrać ostatni wygląd article.comment
?