I got this case:
<div class="parent">
<div class"routeA">
<div class="header">
<li></li>
<li class="p-highlight"></li>
<li></li>
</div>
</div>
<div class="routeB">
<div class="content">
</div>
</div>
</div>
I need to make .content to have border-radius: 6px when .p-highlight is not with first li, and .content to have border-radius: 0px 0px 6px 6px when .p-highlight is combined with first li
Is this even possible?