我有一个包含单选按钮列表的网页。我想将单选按钮列表重复方向从水平更改为垂直。我正在使用 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 的重复方向?