Javascript - modify CSS on HTML tag?

前端 未结 2 2074
北海茫月
北海茫月 2021-02-13 13:44

The HTML tag on this page I\'m working on is in a class that is giving it a top padding of 28px. I need this to go away temporarily when a button is cl

2条回答
  •  忘掉有多难
    2021-02-13 13:55

    Use this to remove the top padding:

    document.documentElement.style.paddingTop = "0";
    

    and this to set it back:

    document.documentElement.style.paddingTop = "28px";
    

提交回复
热议问题