我尝试将所有单选按钮与其标签垂直居中,但vertical-align
没有帮助:
input[type="radio"]{
vertical-align: center;
}
<p style="display:inline-block;margin:0 0;"> Option: </p>
<label>
<input type="radio" name="group1"> Label1
</label>
<label>
<input type="radio" name="group1"> Label2
</label>
<label>
<input type="radio" name="group1"> Label3
</label>
3条答案
按热度按时间mm9b1k5b1#
更正为:垂直对齐:中间;
jtoj6r0c2#
您可以使用以下CSS设置:
并应用到您的jsfiddle:https://jsfiddle.net/p5ts1rco/1/
zwghvu4y3#
我编辑了复选框https://stackoverflow.com/a/494922/7767664的示例(更改为单选按钮):