target each slide except last code example
Example 1: styling links within a class except the last one
.outer a:not(:last-of-type) {
color: red;
}
Example 2: styling links within a class except the last one
<div class="outer">
<a href="#">First</a>
<a href="#">Second</a>
<div>
<a href="#">Third</a>
</div>
<a href="#">Fourth</a>
<a href="#">Fifth</a>
</div>