我做了这个小提琴,我希望红色 div 位于黄色 div 的正下方。他们不是。如何定位 divup
和down
relative wrapper
?
猜测它应该很简单,但我无法让它工作。我想我需要使用 relative。“条”是时间线,可以自由“浮动”。
HTML:
<div class="wrapper" style="background:blue">
<div class="up" style="background:yellow"/>
<div class="down" style="background:red"/>
</div>
CSS:
.wrapper {
width:50px;
height:400px;
background:blue;
margin:1em;
}
.up {
position:relative;
top:100px; /*I want this one 100px from the top of .wrapper*/
height:100px;
}
.down {
position:relative;
top:200px; /*I want this one 200px from the top of .wrapper*/
height:50px;
}