Vertically aligning a checkbox

后端 未结 7 992
后悔当初
后悔当初 2020-12-29 19:52

I have looked at the different questions regarding this issue, but couldn\'t find anything that works due to limitations in my markup.

My markup looks like so (unfor

7条回答
  •  臣服心动
    2020-12-29 20:30

    make input to block and float, Adjust margin top value.

    HTML:

    luke..

    CSS:

    /*
    change margin-top, if your line-height is different.
    */
    input[type=checkbox]{
    height:18px;
    width:18px;
    padding:0;
    margin-top:5px;
    display:block;
    float:left;
    }
    .label{
    border:1px solid red;
    }
    

    Demo

提交回复
热议问题