2013-08-21 57 views
0

即時通訊使用visual Studio 2012和從nuget包下載的引導程序。在ASP.Net中使用引導程序的單選按鈕

我有下面的代碼顯示單選按鈕

<asp:Label ID="Label6" runat="server" Text="Label"></asp:Label> 
     <asp:RadioButtonList ID="RadioButtonList3" runat="server" CssClass="radio"> 
      <asp:ListItem Text="Yes" Value="yes"></asp:ListItem> 
      <asp:ListItem Text="No" Value="no"></asp:ListItem> 
     </asp:RadioButtonList> 

現在定位是不妥當的,它像 enter image description here

我怎樣才能得到正確使用引導程序和asp.net作爲對齊下面

enter image description here

回答

0

你會需要使用一些CSS。

嘗試的標籤設置爲:

#RadioButtonList3 label{ 
    display: inline-block; 
    width: 200px; <---- wild shot in the dark on the exact width 
    text-align: center; 
} 
1

我居然發現另一種方式,並且工作正常使用自舉排液性能

<div class="row-fluid"> 
      <div class="span6 offset3"> 
       fluid6 
       <div class="row-fluid"> 
        <div class="span6"> 
         <asp:Label ID="Label6" runat="server" Text="Label"></asp:Label> 
        </div> 
        <div class="span6 radio"> 
         <asp:RadioButtonList ID="RadioButtonList3" runat="server"> 
         <asp:ListItem Text="Yes" Value="yes"></asp:ListItem> 
         <asp:ListItem Text="No" Value="no"></asp:ListItem> 
      </asp:RadioButtonList> 
        </div> 
       </div> 

      </div> 
     </div> 
相關問題