2014-02-20 163 views
0

我有一個radioButtonList我有ASP中的標籤,radioButtonList正確顯示,但它不與爲它創建的標籤對齊。RadioButtonList不與標籤對齊,CSS問題

我究竟需要的是

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> 
+0

你知道,在默認情況下,單選按鈕文本居右,對? – LcSalazar

+0

適合我。必須有一些你沒有顯示的CSS會影響這一點。 –

+0

@LcSalazar那麼如果OP選擇右邊的按鈕呢?這與問題無關。 –

回答

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>