Hi I'm using the following selector to style an element whihc is on the first child of the parent element I select! since the element doesn't have a specific class I use this method. But the style doesn't get added to the element.
.order-bar div[class^='col-']:first-child i[class^='fa-']:before{
padding: 0px 20px;
color: #ccc !important;
}
html
<div class='order-bar'>
<div class="row">
<div class="col-xs-1 col-sm-1 col-md-1 col-lg-1">
<i class="fa fa-circle"></i>
</div>
<!-- other elements -->
</div>
</div>