我在表格单元格中有一个表单元素,最后给了我额外的不需要的空间。我已经尝试将我的样式表更改为{margin-bottom:0;}如果它在表格单元格中,如何消除表单元素之后的空格?
echo '<tr id="'.$serial.'" class="more"><td colspan="4" valign="top"><form id="newcredit'.$serial.'" name="newcredit'.$serial.'" style="margin-bottom:0">';
echo '<input type="text" id="Label" name="Label" style="width:75px" onKeyPress="return submitcredit(this.event, '.$serial.')" />';
echo '<img src="plussm.png" id="'.$serial.'" title="Add Credit" onclick="creditadd(this.id), removewatermark(this.value, this.id)" /></form>';
服务器数据库调用... foreach(blahs as blah)...
echo '<br>';
echo '<input type="text" id="'.$creditid.'" name="Label" style="width:75px" value="'.$recordLabel).'" onchange="creditupdate(this.id, this.name, this.value)" />';
echo '</td></tr>';
答案 0 :(得分:0)
你的意思是在表格的末尾或下面有额外的空间吗?
我遇到类似的问题,我并排有两个表格单元格,第一个单元格的宽度为100%。
第二个单元格中有一个按钮,但按钮的右侧和单元格的末端之间有一个间隙。
向单元格添加按钮会扩大最后一个按钮末尾的间隙。