根据添加到数字的变量设置保证金

时间:2012-08-25 14:46:33

标签: jquery css height

我正在尝试将元素的margin-bottom更改为next()元素的高度加12px。我尝试了以下方法,但这不起作用。

$("div.entry-content").css("margin-bottom", $(this).next().outerHeight() + 12 + "px");

知道出了什么问题吗?

1 个答案:

答案 0 :(得分:3)

试试这个:

$("div.entry-content").css("margin-bottom", function(){
    return $(this).next().outerHeight() + 12 + "px"
})