radiobuttons to the left of label using CSS

TotalPower

New Member
I have been attempting to move the labels of my radiobuttons to the left with the help of CSS but nothing seems to work. Could i get a second pair of eyes to help me with this?\[code\]asp:RadioButtonList ID="rbid" runat="server" RepeatDirection="Vertical" RepeatLayout="Table" TextAlign="left" > <asp:ListItem Vhttp://stackoverflow.com/questions/14403302/alue="a">a</asp:ListItem> <asp:ListItem Value="http://stackoverflow.com/questions/14403302/b">b</asp:ListItem> <asp:ListItem Value="http://stackoverflow.com/questions/14403302/c">c</asp:ListItem> <asp:ListItem Value="http://stackoverflow.com/questions/14403302/d">d</asp:ListItem> </asp:RadioButtonList>\[/code\]css:\[code\] .FormArea input[type=radio]{ float:left; }.FormArea input[type=radio] label { float:right;\[/code\]}
 
Back
Top