Use owl carousel plugin then apply those. state-single div has a border. I want the 1st item state-single border none. HTML:
<div class="owl-carousel loop">
<div class="item">
<div class="state-single"></div>
</div>
<div class="item">
<div class="state-single"></div>
</div>
<div class="item">
<div class="state-single"></div>
</div>
</div>
Edit: Normal div it works but with owl-carousel plugin it not works.
This works for me :)
.owl-item:not(.active) + .owl-item.active .state-single{
border: none;
}