如何使用!important编辑元素

时间:2017-11-05 03:33:34

标签: javascript weebly

这是我的代码:

<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或其他东西。

谢谢!

1 个答案:

答案 0 :(得分:0)

在关闭body标记之前添加;

   <script>
     document.getElementsByTagName('body')[0].style.setProperty("padding-bottom", "0px", "important");
   </script>