2
我試圖將一個SAVE按鈕添加爲粘貼到頁面底部的頁腳,但只要有「下面的內容」就會向下移動。這個內容我通常適合在一個頁面上,但是在使用select複選框元素時會超出範圍。問題的當內容擴展時向下移動的粘性頁腳
例子:
當我點擊選擇複選框元素:
當前代碼
風格:
.bottom {
position:absolute;
bottom:0px;
height:40px;
width:100%;
background:#E8E8E8;
text-align:center;
font-weight:bold;
}
HTML:
<div class="bottom" id="save"><div style="position: relative;top: 50%;transform: translateY(-50%);">SAVE</div></div>