【发布时间】:2016-04-28 15:45:06
【问题描述】:
我使用了向导控件。此代码来自页面源。我想减少 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>
【问题讨论】: