我使用了向导控件。此代码来自pagesource。我想减少cellpadding和cellspacing

cellspacing =“ 5” cellpadding =“ 5”。我必须在哪里更改这些值。这是默认的向导控件内部表样式。那么有可能改变吗?

<table cellspacing="0" cellpadding="0" border="0" id="WizardGL" style="width:100%;border-collapse:collapse;">
 <tbody>

 <tr style="height:100%;">
    <td>
      ..................................................
   </td>
</tr>
<tr>
    <td align="right">
       <table **cellspacing="5" cellpadding="5"** border="0">
         <tbody><tr>
            <td align="right">
               <input type="submit"     name="$WizardGL$StepNavigationTemplateContainerID$StepPreviousButton" value=" Previous" >
            </td>
            <td align="right">
              <input type="submit" name="WizardGL$StepNavigationTemplateContainerID$StepNextButton" value="Next " id="WizardGL_StepNavigationTemplateContainerID_StepNextButton" >
            </td>
           </tr>
        </tbody>
     </table>
 </td>
</tr>
</tbody>
</table>

最佳答案

如下所示,在aspx页的“向导”标记中更改它们。

<asp:Wizard ID="Wizard1" runat="server" ActiveStepIndex="0"
        OnActiveStepChanged="GetFavoriteNumberOnActiveStepIndex"
        BackColor="#FFFBD6" BorderColor="#FFDFAD" BorderWidth="1px"
         CellPadding="5" CellSpacing="3" Font-Names="Verdana"
        Font-Size="0.8em" Width="322px">
</asp:Wizard>


但是,如果在向导中将布局模板与表格元素一起使用,则需要确保在布局模板的标记中也设置了cellpadding和cellspacing。

只需将这些值设置为适合您的情况。

关于jquery - 向导控件内表cellpadding需要减少,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34939980/

10-12 07:05