Prevent wrapping of text below radio buttons

前端 未结 5 790
囚心锁ツ
囚心锁ツ 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:35

    This worked for me

    input[type=radio] {
      float: left;
      display: block;
      margin-top: 4px;
    }
    
    label {
      margin-left: 15px;
      display: block;
    }
    

提交回复
热议问题