我似乎无法将我的RadioButtonList置于面板中心。似乎总是左对齐。无论我尝试什么。
我目前的代码是:
<asp:panel ID="Panel1" runat="server" CssClass="style8" Height="228px"
width="456px">
<br />
<p style ="text-align:center">
<asp:Label ID+"Label2" runat="server" Text="Blah">
</asp:Label>
</p>
<asp:RadioButtonList ID="AlertClients" runat="Server" TextAlign="Right"
style="list-style=center">
<asp:ListItem> Option 1</asp:ListItem>
<asp:ListItem> Option 2</asp:ListItem>
<asp:ListItem> Option 3</asp:ListItem>
</asp:RadioButtonList>
</asp:Panel>
非常感谢任何帮助。
答案 0 :(得分:4)
只需将此标记放在单选按钮列表控件中:align =“center”
<asp:RadioButtonList ID="AlertClients" runat="Server" TextAlign="Right" Style="list-style=center" align="center">
<asp:ListItem> Option 1</asp:ListItem>
<asp:ListItem> Option 2</asp:ListItem>
<asp:ListItem> Option 3</asp:ListItem></asp:RadioButtonList>
答案 1 :(得分:1)
在我看来,使用div代替面板。但是在面板中你也可以尝试给予
style="margin:auto;"
答案 2 :(得分:1)
我打赌你需要编辑面板引用的style8并添加 tex-align:center;
<style>
.style8
{
text-align:center;
}
</style>