这是我的代码:
<body class="no-header-page wsite-page-index full-width-body-off header-overlay-on alt-nav-off wsite-theme-light fade-in" style="min-height: 100%; position: relative; height: auto !important; padding-bottom: 64px !important;">
我想改变“padding-bottom:64px!important;”进入“填充底部:0px!important;”使用javascript或其他东西。
谢谢!
答案 0 :(得分:0)
在关闭body
标记之前添加;
<script>
document.getElementsByTagName('body')[0].style.setProperty("padding-bottom", "0px", "important");
</script>