0

我有一个 div,它的样式属性由Masonry根据浏览器的大小自动给出:

<div id="container" class="transitions-enabled clearfix masonry"
 style="position:relative; height: 1686px; width: 1600px; visibility: visible;">

有没有办法将height属性和值添加到另一个 div?

这就是结果最好的样子:

<div class="footer" style="width: 1600px"></div>
4

1 回答 1

2

很容易使用 jQuery:

宽度:

$('.footer').width($('#container').width());

js小提琴。

或高度:

$('.footer').height($('#container').height());

js小提琴。

于 2013-07-04T19:20:49.387 回答