Html 单选按钮列表-小文本对齐问题?

Html 单选按钮列表-小文本对齐问题?,html,alignment,radiobuttonlist,Html,Alignment,Radiobuttonlist,我有一个单选按钮列表,上面有如下按钮: 然而,我注意到了一个小问题。。我希望第二行文字在“单选按钮的圆圈”之后。。。我该怎么做 我完全不知道 S在css中尝试一下 <style type="text/css"> table.radioButton input { float: left; } table.radioButton label { margin-left: 25px; display: block; }

我有一个单选按钮列表,上面有如下按钮:

然而,我注意到了一个小问题。。我希望第二行文字在“单选按钮的圆圈”之后。。。我该怎么做

我完全不知道


S

在css中尝试一下

<style type="text/css">
 table.radioButton input
 {    
      float: left;
 }

 table.radioButton label
 {    
      margin-left: 25px;
      display: block;
 }
</style>

表1.1无线按钮输入
{    
浮动:左;
}
表1.radioButton标签
{    
左边距:25px;
显示:块;
}
和.aspx中的

<asp:RadioButtonList runat="server" CssClass="radioButton" ....>