我在网页底部添加固定按钮时遇到了一些麻烦。正在测试带有像素的不同数字,但该按钮并未在右侧页面下方显示。
的HTML
<a href="#head"><img src="upbutton.png" id="fixedbutton"></a>
的CSS
.fixedbutton {
position: fixed;
bottom: 560px;
right: 1000px;
}
最佳答案
您要在CSS(一个类)中指定.fixedbutton
,并在元素本身上指定id
。
将您的CSS更改为以下内容,这将选择id
fixedbutton
#fixedbutton {
position: fixed;
bottom: 0px;
right: 0px;
}
这是jsFiddle的JoshC。