Is there a way to apply bottom-border
to certain div elements within their parent, excluding the last two? It's important to note that the number of child elements can vary:
<div id="parent">
<div>
One
</div>
<div>
Two
</div>
<div>
Three
</div>
<div>
Four
</div>
</div>
How can I target all child elements except for the last two?