my function is hide and show div with pure css but when i click open, the button still not disappear.
<a href="#show" id="open" class="btn btn-default btn-sm">Open</a>
<div id="show">
some text...
<a href="#hide" id="close" class="btn btn-default btn-sm">Close</a>
</div>
and the css look like:
<style>
#show {display: none; }
#show:target { display: inline-block; }
#hide:target ~ #show { display: none; }
<style>
when i add this :
#show:target ~ #open { display: none; }
the button #open
still not hiding
anyone can help me.
thanks before :)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…