如何在网页底部添加按钮?我试过这个:
<div id="footer" style="text-align:center">
<form id = "reset" action = "bug.html">
<input type = "submit" value = "Reset">
</form>
</div>
但没有工作!我需要按钮在那里是静态的(即使之后一些其他元素被添加到身体中也不应该移动)。怎么做到这一点?
答案 0 :(得分:0)
你可以使用position:fixed
之类的;
#footer {
position: fixed;
bottom: 0;
z-index: 100;
}
以下是演示: http://jsfiddle.net/cubuzoa/g8P8Y/1/ 。请参阅底部粘贴的重置按钮