我想每个人都知道这个网站http://pinterest.com/,我不想创建这样的网站,但我还有另一个目的,我想在 div 下创建具有静态宽度和高度始终可变值的 div。
我在这里制作了 HTML 代码:http: //jsbin.com/ihekiv
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
div{
margin: 5px;
}
.width-200{
width: 200px;
background-color: #FCF;
}
.float-left{
float: left;
}
</style>
</head>
<body>
<div class="width-200 float-left color-01" style="height: 300px;">
</div>
<div class="width-200 float-left color-01" style="height: 250px;">
</div>
<div class="width-200 float-left color-01" style="height: 250px;">
</div>
<div class="width-200 float-left color-01" style="height: 250px;">
</div>
<div class="width-200 float-left color-01" style="height: 250px;">
</div>
<div class="width-200 float-left color-01" style="height: 250px;">
</div>
<div class="width-200 float-left color-01" style="height: 250px;">
</div>
<div class="width-200 float-left color-01" style="height: 250px;">
</div>
<div class="width-200 float-left color-01" style="height: 250px;">
</div>
</body>
</html>
在我的 HTML 代码中,您可以清楚地看到 div 5 不在 div 1 下,我如何才能将 div 5 放在 div 1 下。可能是这个 div 会改变它的高度 可能是一些 div 会改变它的高度现在我想知道当 div 的高度变得可变时我该怎么做。谁能告诉我如何做到这一点。