2021-02-06 CSS Selector Playground
by Ttt Yyy
HTML
<div class="test1 test2 container">
Hi
</div>
<div class="test1 container">
Hi2
</div>
<div class="parent1 container">
<span class="child1">Child1</span>
</div>
<div class="parent2 container">
<span class="child1">Child1</span>
</div>
CSS
.container {
padding: 12px;
}
.test1.test2{
color: blue;
}
.parent1 .child1 {
color: blue
}