Html 如何控制radiobuttonlist控件的RadioButton之间的间距

Html 如何控制radiobuttonlist控件的RadioButton之间的间距,html,css,asp.net,Html,Css,Asp.net,我在RadioButtonList的新添加的RadioButtonYes和No之间有很大的空间,现有regiondivName的第一部分正确对齐。 有谁能帮我调整新增加的第二个区域DIV1吗 <div id="divpanelFacts" runat="server"> <fieldset id="panelFacts"> <table width="100%">

我在RadioButtonList的新添加的RadioButtonYes和No之间有很大的空间,现有regiondivName的第一部分正确对齐。 有谁能帮我调整新增加的第二个区域DIV1吗

<div id="divpanelFacts" runat="server">
            <fieldset id="panelFacts">
                <table width="100%">
                    <tr>
                 <td>
                            <div id="divName" runat="server" visible="false">                          
                                <span>
                                    <label runat="server" id="Label1">
                                        <span id="pNameSpan" runat="server">*</span>P Name</label>
                                    <asp:TextBox ID="textPName" runat="server" MaxLength="20"></asp:TextBox>
                                </span>
                            </div>
                        </td>
                          <td>                    

                            <div id="div1" runat="server" visible="false">                           
                                <asp:Label ID="lbl1" runat="server" Text="Would like to use this option for document purpose"></asp:Label>                               
                                <asp:RadioButtonList ID="rbl1" runat="server" TextAlign="Left" RepeatDirection="Horizontal">
                                    <asp:ListItem Value="Yes" Text="Yes" />
                                    <asp:ListItem Value="No" Text="No" Selected="True" />
                                </asp:RadioButtonList>                           
                            </div>

                          </td>
                     </tr>
                </table>
            </fieldset>
    </div>

您的表宽度为100%,这意味着它将拉伸它,我认为表优先。

您是否尝试向控件添加一些Css属性?比如:显示:内联还是内联块?进入chrome控制台,查看每个元素的大小,看看问题是关于高度还是宽度。