Is it possible to use regular expressions in less? If not is there another way I can achieve the following?
I want to give every Bootstrap row and column a dotted border. Given that theres so many col-md-12, col-md-11, .... I dont want to type out all of them so I just want to say:
.my-canvas { .row, .col-.*-.* { outline: 2px dashed #000; } }