footer高さを取得してmarginに代入したい
解決したいこと
footer高さを取得してmainのmargin-bottomに指定したい
例)
紙芝居のようにフッターを表示させたい。
該当するソースコード
$(function () {
$(".header").on("click", function () {
let height1 = $(".footer").css("height");
alert(height1);
$(main).css("margin-bottom", height1);
});
});
0