On Laravel
blade I'm using this code to iterate through a list which is filled by an array:
<ul>
@foreach($prerequisites as $prerequisite)
<li class="pre-course"
style="border-bottom: 1px solid #eee;">
<p>
...
</p>
</li>
@endforeach
</ul>
on this my code each <li>
have border-bottom: 1px solid #eee;
and i'm trying to remove that on last child with Css
by code:
ul li.pre-course:last-child {
border-bottom:none;
}
but it doesn't work and last child have border