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

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

Assuming the following markup:

Radio Buttons
5条回答
  •  天涯浪人
    2021-02-04 12:40

    Using the following markup and css I was able to produce multi-line labels that do not wrap under the radio button:

    
    
    

    however I was unable to use:

    fieldset label {
      vertical-align: middle;
    }
    

    to center the label vertically on the radio button, even when applying a width (both suggestions in Dmitri Farkov's answer. My main purpose was to prevent wrapping under the radio button, so this solution will be fine for the time being.

提交回复
热议问题