3 回答
TA贡献2012条经验 获得超12个赞
您可以使用jquery的每个函数:
var highest;
var first = 1;
$('.features').each(function() {
if(first == 1)
{
highest = $(this);
first = 0;
}
else
{
if(highest.height() < $(this).height())
{
highest = $(this);
}
}
});
TA贡献1808条经验 获得超4个赞
您可以做三列div,但是您必须像这样在其周围添加包装器
<div id="wrapper">
<div class="features"></div>
<div class="features"></div>
<div class="features"></div>
</div>
在头标签里放这个
<style type="text/css">
#wrapper {
position:relative;
overflow:hidden;
}
.features {
position:absolute;
float:left;
width:200px; /* set to whatever you want */
height:100%;
}
</style>
无论其中一个框的宽度是多少,其他框也将相同。希望这可以帮助。很抱歉,如果没有,我只是当场编写了代码。
- 3 回答
- 0 关注
- 553 浏览
相关问题推荐
添加回答
举报