I want to have a responsive add- divon for on my page. It should be the fifth part height, which is in the variable cover_height.
This is my approach so far, which follows the answer to this question , but it does not change padding-top:
var cover = document.getElementById("cover");
var cover_height = cover.height;
cover.style["padding-top"] = cover_height / 5 + "px";
Any feedback on the code is appreciated since I'm pretty new to JS.
source
share