I have
#boxes { visibility: hidden }
.active { visibility: visible }
I want the div
to be hidden unless .active
is in use. I tried <div id="boxes" class="active">
but the div
was still hidden.
Is there anyway for the .active
class to override the hidden visibility??