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 { position: fixed; bottom: 0px; right: 0px; }
这是JoshC的jsFiddle礼节.
总结以上是内存溢出为你收集整理的html – 如何在页面右下方添加固定按钮全部内容,希望文章能够帮你解决html – 如何在页面右下方添加固定按钮所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)