gpt4 book ai didi

css - 有趣的 CSS float

转载 作者:太空宇宙 更新时间:2023-11-04 00:04:11 25 4
gpt4 key购买 nike

我有以下一些 DIV 的 CSS,

#wrapper {
width:960px;
border:1px solid red;
overflow:hidden;
}

#maintitle {
width:600px;
height:50px;
float:left;
border:1px solid #333;
}

#sidebar {
clear:both;
float:left;
width:100px;
height:200px;
border:1px solid #ccc;
}

#rightSidebar {
width:100px;
height:200px;
float:right;
border:1px solid #CCC;
}

我认为#rightSidebar div 会 float 到#wrapper div 的最右上角,但是,它停留在#maintitle DIV 下方。

#maintitle DIV 向左浮动,那么它是否允许#rightsidebar div float 到最右上角?

这是在行动,http://jsfiddle.net/BdpU7/ .

最佳答案

这是你的想法吗? http://jsfiddle.net/BdpU7/1/

#rightSidebar 需要放在 HTML 中的 #sidebar 之前,然后 #sidebar 必须有 clear:

#wrapper {
width:960px;
border:1px solid red;
overflow:hidden;
}

#maintitle {
width:600px;
height:50px;
float:left;
border:1px solid #333;
}

#sidebar {
clear:left;
float:left;
width:100px;
height:200px;
border:1px solid #ccc;
}

#rightSidebar {
width:100px;
height:200px;
float:right;
border:1px solid green;
}

<div id="wrapper">
<div id="maintitle"></div>
<div id="rightSidebar"></div>
<div id="sidebar"></div>
</div>

关于css - 有趣的 CSS float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15488976/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com