欲allign DIV塊以這樣馬納:Allign柱
+-----+------+ |first|second| | | | + +------+ | |third | | | | +-----+------+
但下面的代碼allign它在其他方式:
<html>
<head>
<style>
.common
{
border: 1px solid black;
float: left;
}
#first
{
background: red;
height: 100px;
width: 50px;
}
#second
{
background: green;
height: 50px;
width: 50px;
}
#third
{
background: yellow;
height: 50px;
width: 50px;
}
</style>
</head>
<body>
<div class="common" id="first">first</div>
<div class="common" id="second">second</div>
<div class="common" id="third">third</div>
</body>
</html>
我不會使用絕對定位。
有沒有其他方法可以做到這一點?
謝謝你的提前。