Safari 中奇怪的输入字段缩进
此代码:
<table cellpadding=0 cellspacing=0 border=0>
<tr>
<td bgcolor=red>
<input type='text' />
</td>
</tr>
</table>
在 Safari 和所有其他浏览器中给出以下输出:
问题是如何删除用背景颜色突出显示的缩进。 问题仅出现在 Safari 中,CSS margin/padding/border 没有帮助。
This code:
<table cellpadding=0 cellspacing=0 border=0>
<tr>
<td bgcolor=red>
<input type='text' />
</td>
</tr>
</table>
Gives this output in Safari and all other browsers:
The question is how to remove the indent that is highlighted with background color.
Problem occurs in Safari only, CSS margin/padding/border does not help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该
输入上可能有一些边距代码>元素。尝试删除它,例如:
There’s probably some margin on that
input
element. Try to remove it, e.g.: