ie7随机浮点偏移量

发布于 2025-01-02 21:32:25 字数 902 浏览 0 评论 0原文

我遇到了奇怪的 ie7 浮动错误。 在我的 div 上,我向左偏移 20px;

我已经设置了一个 jsfiddle 来复制我遇到的错误。

JSFIDDLE 链接

html 代码

<div class="input-area short">
   <label for="phone">Phone</label>
   <br>
   <input type="text" name="phone" class="fillout">
</div>

<div class="input-area short">
   <label for="dob">Date of Birth</label>
   <br>
   <input type="text" name="dob" class="fillout">
</div>

css 代码

.input-area{
   margin-top:15px;
}
.input-area.short{
   float:left;
   margin-right:8px;
}
.sweepstake-competition label {
   color: #FFFFFF;
   font-size: 10px;
}
.fillout {
   background-color: #FAFBFB;
   border: 1px solid #999999;
   border-radius: 4px 4px 4px 4px;
   height: 22px;
   width: 110px;
}

I'm getting the strange ie7 float bug.
Where on my div I'm getting offset left 20px;

I've setup a jsfiddle bellow that replicates the error I'm experiencing.

JSFIDDLE LINK

html code

<div class="input-area short">
   <label for="phone">Phone</label>
   <br>
   <input type="text" name="phone" class="fillout">
</div>

<div class="input-area short">
   <label for="dob">Date of Birth</label>
   <br>
   <input type="text" name="dob" class="fillout">
</div>

css code

.input-area{
   margin-top:15px;
}
.input-area.short{
   float:left;
   margin-right:8px;
}
.sweepstake-competition label {
   color: #FFFFFF;
   font-size: 10px;
}
.fillout {
   background-color: #FAFBFB;
   border: 1px solid #999999;
   border-radius: 4px 4px 4px 4px;
   height: 22px;
   width: 110px;
}

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

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

发布评论

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

评论(1

甜心小果奶 2025-01-09 21:32:25

使用填充代替边距。
边距与浮动发生冲突。

Used padding instead of margins.
Margins were clashing with floats.

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