3

我有一个包含单选按钮列表的网页。我想将单选按钮列表重复方向从水平更改为垂直。我正在使用 CSS骨架框架。所以我的页面是响应式的,但 asp:RadioButtonList 没有改变。

这是我的代码

<asp:RadioButtonList ID="rbl_payment_type" runat="server" RepeatDirection="Horizontal" AutoPostBack="true" OnSelectedIndexChanged="rbl_payment_type_SelectedIndexChanged">
   <asp:ListItem Value="0">Serbest Ödeme</asp:ListItem>
   <asp:ListItem Value="1">Ön Tanımlı Ödeme</asp:ListItem>
</asp:RadioButtonList>

如何更改响应式 html 的重复方向?

4

1 回答 1

1

您可能需要查看 RadioButtonList 的RepeatLayout属性,该属性确定单选按钮列表是否呈现为表格。此外,如果您使用的是 .NET 4.0 或更高版本,则可以选择有序列表或无序列表。

这是RadioButtonList RepeatLayout 属性的文档

一旦你在非表格布局中使用它,那么我相信它会更有利于 CSS 的响应式 UI。

于 2013-06-26T23:30:33.213 回答