html - body margin-top:40px不工作

时间:2015-10-17 07:16:02

标签: jquery html css

我正在尝试添加一个顶部栏并将整个身体向下移动40px。

$('body').attr('style','margin-top:40px;');

这会将样式元素添加到body中,当我检查元素时会看到它,但它不会使身体向下移动。

1 个答案:

答案 0 :(得分:0)

它有很多方法可以做,例如:

$('body').attr('style','margin-top:40px !important'); 

如果你想要纯JavaScript代码,你可以使用它:

document.body.style.marginTop = "40px";

使用jQuery css funtion

$(body).css('margin-top': '40px');