Skip to content

Instantly share code, notes, and snippets.

@blooski
Created August 6, 2013 00:31
Show Gist options
  • Save blooski/6160950 to your computer and use it in GitHub Desktop.
Save blooski/6160950 to your computer and use it in GitHub Desktop.
Align checkbox with label, style
<form>
<div>
<label><input type="checkbox" /> Label text</label>
</div>
</form>
<style type="text/css">
label {
display: block;
padding-left: 15px;
text-indent: -15px;
}
input {
width: 13px;
height: 13px;
padding: 0;
margin:0;
vertical-align: bottom;
position: relative;
top: -1px;
*overflow: hidden;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment