Is is possible to toggle a class with only css?
Say I have the following:
<div class="parent">
<div class="child collapsed">
Boring Text
</div>
</div>
Is is possible, just with css, that when you click on the parent
, you can switch the collapsed
class to expanded
and vice versa?