Safari 中奇怪的输入字段缩进

发布于 2024-08-19 04:23:53 字数 395 浏览 6 评论 0原文

此代码:

<table cellpadding=0 cellspacing=0 border=0>
    <tr>
        <td bgcolor=red>
            <input type='text' />
        </td>
    </tr>
</table>

在 Safari 和所有其他浏览器中给出以下输出: alt text

问题是如何删除用背景颜色突出显示的缩进。 问题仅出现在 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:
alt text

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

混浊又暗下来 2024-08-26 04:23:53

输入上可能有一些边距代码>元素。尝试删除它,例如:

<input type='text' style="margin:0" />

There’s probably some margin on that input element. Try to remove it, e.g.:

<input type='text' style="margin:0" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文