gpt4 book ai didi

html - 单选按钮对齐问题

转载 作者:太空宇宙 更新时间:2023-11-04 13:21:03 24 4
gpt4 key购买 nike

如何让我的单选按钮更靠近标签?

input[type="radio"]{
float: left;
width: auto;
margin-left: 3em;
}

<fieldset id="payment_method">
<legend>Payment Method</legend>
<input type="radio" name="payment_method"value="Bill Me">
<label for= "payment1"> Bill Me</label>
<input type="radio" name="payment_method"value="Bill Me">
<label for= "payment2">Credit Card</label>
</fieldset>

最佳答案

你不需要 float 你的输入,你可以像这样给标签一个负边距:

label {
margin-left: -1px;
}

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

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