在我的 html 中,我使用表格来显示日期选择器。修复日期选择器后,单元格占用了大量空间,因此我无法将该表格保留在我的网页旁边。
这是我的 html ,
<table border="1" cellspacing="0" >
<tr>
<td><input id="ir-box" type="checkbox"/></td><td colspan="3">Only show LIVE reports</td>
</tr>
<tr>
<td colspan="3"><input type="text" value="Keyword Search"/></td><td>{% include "buttons/go.html" %}</td>
</tr>
<tr>
<td colspan="4"><input class="incident-type" type="text" value="All Incident types" /></td>
</tr>
<tr>
<td colspan="4"><input class="incident-type" type="text" value="All Location types"/></td>
</tr>
<tr>
<td colspan="2">From</td><td colspan="2">To</td>
</tr>
<tr>
<td colspan="2"><input class="datefield" id="fromdate" type="text" value="dd/mm/yyyy"/></td><td colspan="2"><input class="datefield" id="todate" type="text" value="dd/mm/yyyy"/></td>
</tr>
<tr>
<td>s</td><td>f</td><td>s</td><td>{% include "buttons/go.html" %}</td>
</tr>
</table>
我正在使用 django web 框架,使用 html 设计网页。
1.如何减少单元格内的空间,以便我可以将表格放在网页旁边。需要帮助
谢谢