Skip to content

Instantly share code, notes, and snippets.

@Yelakelly
Created March 3, 2016 20:44
Show Gist options
  • Save Yelakelly/6581585f02f33f1e544f to your computer and use it in GitHub Desktop.
Save Yelakelly/6581585f02f33f1e544f to your computer and use it in GitHub Desktop.
<label for="block-hide" class="block-hide__link">Link</label>
<input type="checkbox" id="block-hide"/>
<div class="hide" >
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Atque id, deserunt</p>
</div>
.hide{
height: 0;
overflow: hidden;
}
.block-hide__link{
text-decoration: underline;
color:blue;
}
.block-hide__link:hover{
cursor: pointer;
}
#block-hide{
display: none;
}
#block-hide:checked ~ .hide{
height: auto;
overflow: visible;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment