文本字段和执行按钮

发布于 2024-08-11 04:09:25 字数 120 浏览 3 评论 0原文

我想将搜索文本字段和“执行”按钮并排放置。

它在 Moz、Opera、IE8、Safari 中看起来是一致的,但在 IE7 中则不然。 IE7 显示 1px 高度间隙。

IE7 下如何实现呢?

I would like to place search textfield and the Go button side by side.

It looks aligned equally in Moz, Opera, IE8, Safari but not in IE7. IE7 shows 1px gap in height.

How it can be done for IE7?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

水中月 2024-08-18 04:09:25

啊,听起来像是旧的 IE 框模型错误

您可能需要有条件地包含 IE7 的单独样式表,并将边距、填充和边框设置为 0(您可能还需要使用 border-collapse 才能使其正常工作)。

可能还值得将您的 DOCTYPE 设置为良好且严格的内容(也许是 XHTML STRICT?)

Ah, sounds like the old IE box model bug.

You'll probably need to conditionally include a separate stylesheet for IE7, and set the margin, padding and border to 0 (you might also need to play with border-collapse to get it to work).

Might also be worth setting your DOCTYPE to something nice and strict (XHTML STRICT maybe?)

拥抱我好吗 2024-08-18 04:09:25

如果您还没有设置文档类型,我会先设置。通常会修复很多蹩脚的 ie bug。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

I'd set the doctype first if you haven't already. Usually fixes a lot a crappy ie bugs.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文