gpt4 book ai didi

html - 如何垂直对齐单选按钮?

转载 作者:行者123 更新时间:2023-11-28 03:13:43 26 4
gpt4 key购买 nike

所以我想要一个包含问题和五个单选按钮的工作表。但是正如您所看到的,不同的问题长度是一团糟。尽管问题很长,但如何很好地对齐按钮,使它们垂直位于标题下方?

[IMG] http://i68.tinypic.com/vpkftw.png[/IMG]

这是 html:

<h4> Ans1  </h4><h4>Answer2 </h4><h4> Ans3 </h4><h4> Ans4 </h4><h4>Ans5 </h4> <br>
Q1 ...................... <input type="radio" name="v1" id="v1_1" value="1"> <input type="radio" name="v1" id="v1_2" value="Bike"> <input type="radio" name="v1" id="v1_3" value="Bike"> <input type="radio" name="v1" id="v1_4" value="Bike"> <input type="radio" name="v1" id="v1_5" value="Bike"> <br>
Q2... <input type="radio" name="v2" id="v2_1" value="Bike"> <input type="radio" name="v2" id="v2_2" value="Bike"> <input type="radio" name="v2" id="v2_3"value="Bike"> <input type="radio" name="v2" id="v2_4" value="Bike"> <input type="radio" name="v2" id="v2_5" value="Bike"> <br>
Q3.<input type="radio" name="v3" id="v3_1" value="Bike"> <input type="radio" name="v3" id="v3_2" value="Bike"> <input type="radio" name="v3" id="v3_3"value="Bike"> <input type="radio" name="v2" id="v3_4" value="Bike"> <input type="radio" name="v2" id="v3_5" value="Bike"> <br>
Q4 <input type="radio" name="v4" id="v4_1" value="Bike"> <input type="radio" name="v4" id="v4_2" value="Bike"> <input type="radio" name="v4" id="v4_3"value="Bike"> <input type="radio" name="v4" id="v4_4" value="Bike"> <input type="radio" name="v4" id="v4_5" value="Bike"> <br>

CSS:

h4 {
display: inline;
position: relative;
left: 280px;

}

h4:nth-child(2) {
margin-left:6em;

}


h4:nth-child(3) {
margin-left:5em;


}


h4:nth-child(4) {
margin-left:7em;

}

h4:nth-child(5) {
margin-left:4em;

}

最佳答案

我建议将您的 html 放在一个表格中,就像您在此处看到的那样,没有边框、线条或其他任何内容。但如果是这样,只需使用 border:0px; 将其删除,例如: https://codepen.io/anon/pen/mMmydy

<table>
<tr>
<th></th>
<th>First Name</th>
<th>Last Name</th>
<th>Points</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
<td>50</td>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
<td>50</td>
</tr>
</table>

关于html - 如何垂直对齐单选按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45579558/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com