把div放在页面的每个角落?

时间:2011-09-09 16:12:01

标签: html css

我无法在页面的每个角落放置4个不同的div,我不知道你是否需要我的html / css代码,但是如果你只做评论我会把它放完。< / p>

如果你知道如何将它放在jsfiddle上,那就太棒了。

2 个答案:

答案 0 :(得分:3)

使用这样的标记:

<div class="box top left"></div>
<div class="box top right"></div>
<div class="box bottom left"></div>
<div class="box bottom right"></div>

您可以使用以下CSS:

.box {
    position: absolute;
    background-color: red;
    width: 100px;
    height: 100px;
}
.box.top { top: 0; }
.box.right { right: 0; }
.box.left: { left: 0; }
.box.bottom { bottom: 0 }

这里有效:http://jsfiddle.net/PvUNT/

答案 1 :(得分:0)

你需要的不仅仅是这个:

<html>
<body>
<div style="position:absolute; bottom:20; right:20;">bottom right</div>
<div style="position:absolute; top:20; right:20;">top right</div>
<div style="position:absolute; bottom:20; left:20;">bottom left</div>
<div style="position:absolute; top:20; left:20;">top left</div>
</body></html>