【发布时间】:2011-11-15 06:41:23
【问题描述】:
我有一个单选按钮列表,其中包含如下按钮: http://imageshack.us/f/545/capture1jtr.png/
但是,我注意到一个小的对齐问题..我希望第二行文本位于“单选按钮的圆圈”之后...我该怎么做??
我完全不知道!
S
【问题讨论】:
标签: html alignment radiobuttonlist
我有一个单选按钮列表,其中包含如下按钮: http://imageshack.us/f/545/capture1jtr.png/
但是,我注意到一个小的对齐问题..我希望第二行文本位于“单选按钮的圆圈”之后...我该怎么做??
我完全不知道!
S
【问题讨论】:
标签: html alignment radiobuttonlist
在 css 中尝试一下
<style type="text/css">
table.radioButton input
{
float: left;
}
table.radioButton label
{
margin-left: 25px;
display: block;
}
</style>
和.aspx中的
<asp:RadioButtonList runat="server" CssClass="radioButton" ....>
【讨论】: