Last active
May 19, 2016 08:12
-
-
Save ore-public/c10984447d6f70fbac5a5fdc11cd8ae1 to your computer and use it in GitHub Desktop.
checkboxをcssで、パネルのオン・オフみたいにする
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
<html> | |
<head> | |
<title>test</title> | |
</head> | |
<style> | |
input[type=checkbox] { | |
display: none; | |
} | |
label { | |
display: inline-block; | |
width: 100px; | |
height: 100px; | |
background: blue; | |
} | |
label:after { | |
content: 'click me'; | |
} | |
input[type=checkbox]:checked + label { | |
background: red; | |
} | |
</style> | |
<body> | |
<input type="checkbox" id="toggle-1"> | |
<label for="toggle-1"></label> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment