What does this code mean?
.show-grid .show-grid [class*="span"] { ... }
Firstly, it is a css-rule that will be applied to approximately the following html:
<div class="show-grid"> <div class="show-grid"> <div class='spanSomething'> // атрибут class содержит строку 'span' </div> </div> </div>
span
and having 2 parent elements with the show-grid
class - SpecterSource: https://ru.stackoverflow.com/questions/147377/
All Articles