RadioButtonList与Label,CSS问题不对齐

时间:2014-02-20 12:14:31

标签: asp.net css

我有radioButtonList我在ASP中有标签,radioButtonList正确显示,但它与为其创建的标签不对齐。

我真正需要的是

1-将radioButtonList与标签

对齐

2-单选按钮的标签必须靠近单选按钮。

如下图所示;

enter image description here

我的ASP代码:

 <div style="display: inline;" dir="rtl">
                   <asp:Label ID="Label8" runat="Server" Text=" Permenat office"></asp:Label> 
                <asp:Label ID="Label35" runat="Server" Text="*" ForeColor="Red" Font-Bold="True"></asp:Label>


                <asp:RadioButtonList runat="server" ID="rdlstPermenantOffice" >
                    <asp:ListItem>Yes</asp:ListItem>
                    <asp:ListItem>No</asp:ListItem>
                </asp:RadioButtonList>


                </div>

1 个答案:

答案 0 :(得分:2)

试试这个工作正常: -

<asp:RadioButtonList ID="rblChoose" runat="server" RepeatDirection="Horizontal" 
 RepeatLayout="Flow">
   <asp:ListItem Text="a" Value="a" />
   <asp:ListItem Text="b" Value="b" />
</asp:RadioButtonList>