1

これはとても簡単なはずです。ラジオボタンリストをどのように中央に配置しますか?以前は難しいことではありませんでした。以下のHTMLは機能しません。私は何が欠けていますか?

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <table style="width:100%">
                  <tr>
                      <td  style="text-align: center">
                          <asp:RadioButtonList ID="radUserType" runat="server" 
                              RepeatDirection="Horizontal">
                          </asp:RadioButtonList>
                      </td>
                  </tr>
           </table>
    </div>
    </form>
</body>
</html>
4

2 に答える 2

0

td 属性を使用してみてください:

<td align="center"> 
      <asp:RadioButtonList ID="radUserType" runat="server" 
       RepeatDirection="Horizontal">
       </asp:RadioButtonList>
</td>
于 2012-09-07T14:43:50.767 に答える