Gunakan kotak centang untuk beralih konten

/*
<input type="checkbox" name="mycheckbox" id="mycheckbox" value="0" />
<div id="toggle-content">
This content should appear when the checkbox is checked
</div>
*/


#toggle-content{
display:none;
}
#mycheckbox:checked ~ #toggle-content{
  display:block;
  height:100px;
}
Brix_da_best