Vertically aligning text next to a radio button

后端 未结 10 2005
醉梦人生
醉梦人生 2021-01-01 08:36

This is a basic CSS question, I have a radio button with a small text label after it. I want the text to appear centered vertically but the text is always aligned with the b

10条回答
  •  伪装坚强ぢ
    2021-01-01 09:09

    You could also try something like this:

    input[type="radio"] {
      margin-top: -1px;
      vertical-align: middle;
    }
      
    

提交回复
热议问题