我创建了 3 个 div,我必须设置我尝试使用 height:100% 的所有高度,但它不起作用。所有这些 div 的内容都有变化,但我需要所有高度相同。请帮助我!
<html>
<style type="text/css">
.b1{height:190px;width:150px;background:#963;float:left}
.b2{height:150px;width:150px;background:#955;float:left}
.b3{height:180px;width:150px;background:#966;float:left}
</style>
</head>
<body>
<div class="b1"></div>
<div class="b2"></div>
<div class="b3"></div>
</body>
</html>