【问题标题】:I would like to align my radio buttons using CSS我想使用 CSS 对齐我的单选按钮
【发布时间】:2020-07-15 22:12:44
【问题描述】:

我试图在 html 和 css 中进行表单调查。我希望我的单选按钮垂直对齐,但是我有点卡住了,因为我已经尝试了一段时间。 这是我的代码:

<p>Choose your education level:</p>
<input type="radio" name="education" value="1">High School degree</input>
<br>
<input type="radio" name="education" value="2">College degree</input>
<br>
<input type="radio" name="education" value="3">Masters degree</input>
<br>
<input type="radio" name="education" value="4">PhD degree</input>

and my CSS code is:

input[type=radio] {
  text-align: left;
}

【问题讨论】:

标签: html css flexbox radio-button alignment


【解决方案1】:

试试这个代码

input[type=radio] {
  vertical-align: middle;
  margin: 0 10px 0 0;
  }
<p>Choose your education level:</p>
<input type="radio" name="education" value="1">High School degree
<br>
<input type="radio" name="education" value="2">College degree
<br>
<input type="radio" name="education" value="3">Masters degree
<br>
<input type="radio" name="education" value="4">PhD degree

【讨论】:

    猜你喜欢
    • 2017-01-06
    • 1970-01-01
    • 2018-08-11
    • 1970-01-01
    • 2016-06-09
    • 1970-01-01
    • 2020-01-31
    • 2011-05-12
    • 2021-01-20
    相关资源
    最近更新 更多