I would like to know if it's possible to target all classes that starts with col-
and ends with 12
only?
For example classes like:
.col-sm-12
.col-md-12
.col-lg-12
but not classes like:
.col-sm-8
.col-lg-6
I tried with something like this which is not working:
[class^="col-*-12"] {
border: 1px solid red;
}