我有这样的代码:
<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;
}
我想在同一条线上设置收音机和标签,这样它们看起来很漂亮,并且垂直居中。
整页和css:http://jsfiddle.net/2yZTK/
答案 0 :(得分:9)
这项工作对我来说
input[type='radio']{
margin:0;
}
input[type='radio'], label{
display:inline;
vertical-align:top;
}
Удачи)
答案 1 :(得分:2)
喜欢这个? http://jsfiddle.net/Driveash/Zn93w/1/
我在.radio-group类中添加了行高,并通过输入和标签更改了垂直对齐。
.radio-group{
text-align: left;
margin: 0 10px 6px 10px;
font-family: Arial,Helvetica,Garuda,sans-serif;
font-size: 11px;
line-height:11px;
}
input[type='radio'], label{
vertical-align: bottom;
margin: 0; //for the whole site.
}