奇怪的 CSS 问题?使用 float 属性定位 div 元素

发布于 2024-10-14 21:22:40 字数 394 浏览 7 评论 0原文

在 Dreamweaver 中,当我输入此 html:

<div style="float:left;width:100px;height:20px">a</div>
<div style="float:left;clear:left;width:100px;height:100px">b</div>
<div style="float:left;width:80px;height:100px">c</div>

div c 时,div c 似乎与 div a 顶部的顶部对齐。这就是我想要的 显示,但是当在浏览器(firefox,即测试)中呈现时,div c 位于 div a 下方并与 div b 对齐。我该如何解决这个问题?

In dreamweaver when I enter this html:

<div style="float:left;width:100px;height:20px">a</div>
<div style="float:left;clear:left;width:100px;height:100px">b</div>
<div style="float:left;width:80px;height:100px">c</div>

div c appears to be aligned to the top along side the top of div a. This is how I want it
to display, however when rendered in a browser (firefox, ie tested) div c is below div a and aligned to div b instead. How can I fix this?

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

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

发布评论

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

评论(2

毁梦 2024-10-21 21:22:40

这似乎是 Dreamweaver 中的一个错误。

在同一上下文中,元素不会向上浮动超过清除元素。

听起来你想要:

<div style="width: 100px; float: left;">
    <div style="height:20px">a</div>
    <div style="height:100px">b</div>
</div>
<div style="float: left;width:80px;height:100px">c</div>

This appears to be a bug in Dreamweaver.

Elements do not float up past a clearing element in the same context.

It sounds like you want:

<div style="width: 100px; float: left;">
    <div style="height:20px">a</div>
    <div style="height:100px">b</div>
</div>
<div style="float: left;width:80px;height:100px">c</div>
帅气称霸 2024-10-21 21:22:40

很难从您的描述中猜出您想要的布局:

尝试一下并让我知道......

<div style="float:left;width:100px;height:20px">a</div>   
<div style="float:left;width:80px;height:100px">c</div>
<div style="clear:both;width:100px;height:100px">b</div>

Hard to guess the layout you want from your description:

Try this and let me know...

<div style="float:left;width:100px;height:20px">a</div>   
<div style="float:left;width:80px;height:100px">c</div>
<div style="clear:both;width:100px;height:100px">b</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文