我正在嘗試將.NET WebForms頁面稍微升級到Bootstrap 3.我需要維護一個沒有Bootstrap的情況下工作正常的功能。我需要一個單選按鈕標籤右側的小文本框。比如,當選擇「其他」時,您需要以其他方式釋放表單文本。將文本框對齊到radiobuttonlist listitem右邊
在樣品上方,我只需要文本框向上移動,而不是一樣寬的整個形式。
這裏是我當前的代碼:
<div class="form-group">
<asp:Label ID="Ethnicity_Label" runat="server" Text="Ethnicity" CssClass="col-xs-12 col-sm-3 control-label"></asp:Label>
<div class="col-xs-12 col-xs-push-1 col-sm-9 col-sm-push-0 radio radiobuttonlist">
<asp:RadioButtonList ID="Ethnicity" runat="server" ValidationGroup="applicationForm" RepeatLayout="Flow">
<asp:ListItem Text="Multi-Racial" Value="Multi-Racial" />
<asp:ListItem Text="Other Ethnicity" Value="Other Ethnicity" />
</asp:RadioButtonList><span class="col-xs-4 col-xs-push-3"><asp:TextBox ID="OtherEthnicity" runat="server" MaxLength="250" ValidationGroup="applicationForm" CssClass="form-control" /></span>
</div>
</div>