gpt4 book ai didi

html - 垂直居中单选按钮及其标签

转载 作者:搜寻专家 更新时间:2023-10-31 22:02:57 25 4
gpt4 key购买 nike

我有这样的代码:

<form method="post" id="sc_form">        
<div class="radio-group">
<input type="radio" name="phone" id="send" value="send"></input>
<label for="send">Вы отправитель</label>
</div>
<div class="radio-group">
<input type="radio" name="phone" id="get" value="get"></input>
<label for="get">Вы получатель</label>
</div>
<input type="submit" name="send" value="Отправить" id="send-button" />
</form>

CSS:

#get, #send{
border: none;
width: auto;
height: auto;
display: inline;
}

.radio-group{
text-align: left;
margin: 0 10px 6px 10px;
font-family: Arial,Helvetica,Garuda,sans-serif;
font-size: 11px;
}

input[type='radio'], label{
vertical-align: baseline;
}

而且我想在同一条线上设置单选和标签,这样它们看起来会很漂亮,并且垂直居中。

http://jsfiddle.net/Zn93w/

整页和 CSS:http://jsfiddle.net/2yZTK/

最佳答案

这对我有用

input[type='radio']{
margin:0;
}

input[type='radio'], label{
display:inline;
vertical-align:top;
}

我 )

关于html - 垂直居中单选按钮及其标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20019399/

25 4 0