text wrapping incorrectly for radio button

后端 未结 4 1423
梦毁少年i
梦毁少年i 2021-02-13 05:55

I have 2 html radio buttons (separated by
tags) where the text is wrapping under the radio button instead of aligning with the left in

4条回答
  •  旧巷少年郎
    2021-02-13 06:25

    You can simply use CSS to force the text to wrap correctly. I'm assuming that you have a tag around the text and so you can use the following to adjust its position:

    span {
      display: block;
      margin-top: -16px;
      margin-left: 28px;
    }
    

    Hope that this helps! Tomer

提交回复
热议问题