How can I make multi-line, vertically and horizontally aligned labels for radio buttons in HTML Forms with CSS?

前端 未结 5 1569
广开言路
广开言路 2021-02-04 12:02

Assuming the following markup:

Radio Buttons
5条回答
  •  礼貌的吻别
    2021-02-04 12:33

    Make input and label both

    float: left;
    display: block;
    

    Set width's for the label and input.


    apply

    clear: both;
     vertical-align: middle;
    

    to all the li's.

提交回复
热议问题