Created
January 24, 2018 21:33
-
-
Save jacobp100/277574dfa1b7c30a382741a330079af3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<title>Dropdown</title> | |
<style> | |
input { | |
box-sizing: border-box; | |
width: 200px; | |
} | |
.options { | |
width: 200px; | |
background: grey; | |
clip-path: inset(0 0 100%); | |
visibility: collapse; | |
transition-duration: 300ms; | |
} | |
input:focus ~ .options { | |
clip-path: inset(0); | |
visibility: visible; | |
} | |
</style> | |
<input /> | |
<div class="options"> | |
<div>Option 1</div> | |
<div>Option 2</div> | |
<div>Option 3</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment