CSS:标签/输入在 IE7 中不会浮动

发布于 2024-12-31 21:25:43 字数 151 浏览 0 评论 0原文

我在 IE7 中将标签和输入相邻浮动时遇到问题。我已经尝试了我能想到的一切:

  • 给它一个固定宽度
  • 溢出隐藏,边框,背景。
  • 用左浮动包裹在 div 内部。

让它正常工作的唯一方法就是把它放在桌子里。

I am having problems with floating a label and input next to each other in IE7. I have tried everything I can think of:

  • Giving it a fixed width
  • Overflow hidden,border, background.
  • Wrapping inside of a div with float left.

The only way I can get it to work correctly is if I put it inside a table.

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

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

发布评论

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

评论(1

云仙小弟 2025-01-07 21:25:43

尝试在每一行下创建一个清除 div。

喜欢

<label>Username</label><input type="text" name="username"/>
<div class="clear"></div>  
<label>Password</label><input type="text" name="password"/>
<div class="clear"></div>

.clear {
clear:both;
}

Try to make a clearing div under each row.

Like

<label>Username</label><input type="text" name="username"/>
<div class="clear"></div>  
<label>Password</label><input type="text" name="password"/>
<div class="clear"></div>

.clear {
clear:both;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文