标签: html css input safari indentation
此代码:
<table cellpadding=0 cellspacing=0 border=0> <tr> <td bgcolor=red> <input type='text' /> </td> </tr> </table>
在Safari和所有其他浏览器中提供此输出:
问题是如何删除用背景色突出显示的缩进。 仅在Safari中出现问题,CSS边距/填充/边框无效。
答案 0 :(得分:1)
input元素上可能有一些margin。尝试删除它,例如:
input
<input type='text' style="margin:0" />