我一直试图在 CSS 的帮助下将单选按钮的标签向左移动,但似乎没有任何效果。我可以得到第二双眼睛来帮助我吗?
asp:RadioButtonList ID="rbid" runat="server" RepeatDirection="Vertical" RepeatLayout="Table" TextAlign="left" >
<asp:ListItem Value="a">a</asp:ListItem>
<asp:ListItem Value="b">b</asp:ListItem>
<asp:ListItem Value="c">c</asp:ListItem>
<asp:ListItem Value="d">d</asp:ListItem>
</asp:RadioButtonList>
CSS:
.FormArea input[type=radio]
{
float:left;
}
.FormArea input[type=radio] label
{
float:right;
}