Skip to content

Instantly share code, notes, and snippets.

@mehulkar
Created November 26, 2012 12:31
Show Gist options
  • Save mehulkar/4147972 to your computer and use it in GitHub Desktop.
Save mehulkar/4147972 to your computer and use it in GitHub Desktop.
vertical align checkbox
ul {
    padding:0;
    display:table;
    width:100%;
    background-color:red;
}
li {
   display: table-cell;
   text-align: center;
   vertical-align: middle;
   height:200px;
   list-style:none;
}
<div>
  <ul>
    <li>
      <input type="checkbox" id="name">
    </li>
    <li>
      <input type="checkbox" id="address">
    </li>
    <li>
      <input type="checkbox" id="name">
    </li>
  </ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment