我在我的網頁底部添加固定按鈕時遇到了一些麻煩。用像素測試了不同的數字,但該按鈕並未顯示在右側的頁面下方。如何將固定按鈕添加到頁面的右下方
HTML
<a href="#head"><img src="upbutton.png" id="fixedbutton"></a>
CSS
.fixedbutton {
position: fixed;
bottom: 560px;
right: 1000px;
}
我在我的網頁底部添加固定按鈕時遇到了一些麻煩。用像素測試了不同的數字,但該按鈕並未顯示在右側的頁面下方。如何將固定按鈕添加到頁面的右下方
HTML
<a href="#head"><img src="upbutton.png" id="fixedbutton"></a>
CSS
.fixedbutton {
position: fixed;
bottom: 560px;
right: 1000px;
}
你應該使用'#fixedbutton'作爲選擇器。 – 2013-10-04 18:24:38