I want to target all of the columns inside a Bootstrap container so I can give then a similar style. For example:
<div class="container unique">
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-3"></div>
<div class="col-md-3"></div>
<div class="col-md-3"></div>
</div>
</div>
I can target this with CSS:
.unique .col-md-3{...}
but what I want to do is when I have many different col-*
elements, to target them all together.
I tried this:
.unique .col-*{...}
but it didn't work. Can I do this with CSS?