Skip to content

Instantly share code, notes, and snippets.

@ore-public
Last active May 19, 2016 08:12
Show Gist options
  • Save ore-public/c10984447d6f70fbac5a5fdc11cd8ae1 to your computer and use it in GitHub Desktop.
Save ore-public/c10984447d6f70fbac5a5fdc11cd8ae1 to your computer and use it in GitHub Desktop.
checkboxをcssで、パネルのオン・オフみたいにする
<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