私は:last-child
自分の状況で仕事をするのに苦労しています。
HTML:
<div class="test">Some content</div>
<div class="test">Some content</div>
<div class="test">Some content</div>
<div class="action">Some other content</div>
CSS:
div.topic {
border-bottom: 1px solid black;
}
div.topic:last-child {
border-bottom: none;
}
最後div.test
はまだ下部に境界線があります。私が思う問題は、クラステストの最後のdivではなくborder-bottom: none
最後のdivに適用されることです。div.action
どうすれば解決できますか?