<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>
Я хочу выбрать #com19
?
.comment {
width:470px;
border-bottom:1px dotted #f0f0f0;
margin-bottom:10px;
}
.comment:last-child {
border-bottom:none;
margin-bottom:0;
}
Это не работает, если у меня есть другой div.something
как фактический последний ребенок в комментарии. Можно ли использовать селектор последнего ребенка в этом случае, чтобы выбрать последний вид article.comment
?