As you posted I too want to design Check Boxes and in addition to that I need an easier way to apply "vertical-align: middle" property. For Example current situation is like this
.parent{
display:table;
}
.child{
display:table-cell;
vertical-align:middle;
}
I want something like this
.child{
vertical-align:middle;
}