我想在一行上放置一个<div>
,然后在另一个<div>
上放置。{/ p>
我将第一个<div>
设置为向左浮动,然后放入下一个。
但是,第一个div覆盖了第二个div。它不是在第一个之后定位第二个(如我所料) - 它是从同一个地方开始的。
这是代码(在JSFiddle上:http://jsfiddle.net/LcrA9/)
<div id="container">
<div id="one">
</div>
<div id="two">
</div>
</div>
#container {
width: 300px;
height: 500px;
}
#one {
width: 100px;
height: 500px;
float: left;
background-color: green;
}
#two {
width: 200px;
height: 500px;
background-color: blue;
}
答案 0 :(得分:2)
浮动第二个div,或者将margin-left
等于第一个div的宽度:
#two {
width: 200px;
height: 500px;
background-color: blue;
float: left;
}
#two {
width: 200px;
height: 500px;
background-color: blue;
margin-left: 100px;
}
@ PlantTheIdea的使用display: inline-block
的建议是合理的。这个问题确实有一个目的:当你想要第二个div消耗剩余的空间时(并且不想使用display: table
,例如。)
Here's an example of that too:
#container {
height: 500px;
clear: both;
}
#one {
width: 100px;
height: 500px;
float: left;
background-color: green;
}
#two {
height: 500px;
background-color: blue;
margin-left: 100px;
}
答案 1 :(得分:1)
你需要抛弃花车,发现display:inline-block;
我的朋友!
您的HTML:
<div id="container">
<div id="one">
</div><div id="two">
</div>
</div>
你的CSS:
#container {
width: 300px;
height: 500px;
}
#one,#two {
display:inline-block;
vertical-align:top;
/* Old IE */
*display:inline;
*zoom:1;
}
#one {
width: 100px;
height: 500px;
background-color: green;
}
#two {
width: 200px;
height: 500px;
background-color: blue;
}
我消除两个div
之间空间的原因是因为如果有空格,inline-block
会在它们之间留出4px的余量。旧的IE版本适用于IE7及以下版本。
答案 2 :(得分:1)
float:left
s
div
#one {
width: 100px;
height: 500px;
float: left;
background-color: green;
}
#two {
width: 200px;
float:left;
height: 500px;
background-color: blue;
}
答案 3 :(得分:0)
你可以通过使第二个div浮动来解决这个问题:
#two {
float: left;
width: 200px;
height: 500px;
background-color: blue;
}
答案 4 :(得分:0)
Float也离开了下一个!!
<div id="container">
<div id="one">
</div>
<div id="two">
</div>
</div>
#container {
width: 300px;
height: 500px;
}
#one {
width: 100px;
height: 500px;
float: left;
background-color: green;
}
#two {
width: 200px;
height: 500px;
background-color: blue;
float:left;
}
答案 5 :(得分:0)
在第二个div上添加另一个“float:left”值。
#one {
width: 100px;
height: 500px;
float: left;
background-color: green;
}
#two {
width: 200px;
height: 500px;
background-color: blue;
float:left;
margin-left:20px
}
答案 6 :(得分:0)
同时将#two
Div设置为float:left
。