Prevent wrapping of text below radio buttons

前端 未结 5 787
囚心锁ツ
囚心锁ツ 2020-12-15 19:53

The best way I could describe what I want is with this picture:

\"\"

How do I make it so the text aligns wi

5条回答
  •  南方客
    南方客 (楼主)
    2020-12-15 20:38

    I love this:

    HTML:

    
    

    CSS:

    input[type="radio"] { 
        position: absolute;
    }
    input[type="radio"] ~ label { 
        padding-left:1.4em;
        display:inline-block;
    }
    

提交回复
热议问题