限制td之间的空间

Limit space between td

本文关键字:空间 之间 td 限制      更新时间:2024-01-26

这是我的表单

正如您所看到的,在信息的左侧和右侧(输入)之间有很大的空间。如何限制此空间?

<html><head><title>Create a League</title></head>
<body>
<center><h1>Create a League</h1></center>
<form action="" method="POST">
 <table cellpadding="0" border="0">
   <tr><td >League Name </td>
     <td> <input name="LeagueName" type="text"> </td>
   </tr>
   <tr><td>Number of Members </td>
     <td><input name="Members" type="text"></td>
   </tr>
   <tr><td>League Password </td>
     <td><input name="LeaguePassword" type="password"></td>
   </tr>
   <tr>
     <td colspan=><input name="Agreement" type="checkbox" value="1"> I agree with the terms of service</td>
   </tr>
   <tr>
     <td colspan=""><input type="submit" value="Register" name="action">
     <input type="reset"  value="Reset"></td>
   </tr>
 </table>
</form>

</body>
</html>

将复选框所在单元格的colspan修改为colspan=2,因为如果没有它,带有标签的整个复选框都会放在左列中。更改后,它将分布在两列中,因此带有标签的左侧列不必那么宽。

<td colspan=2><input name="Agreement" type="checkbox" value="1"> I agree with the terms of service</td>