答案 0 :(得分:0)
添加position: fixed; bottom: 0;
,然后移除top:0;
,bottom属性设置元素的下边缘。
试试这段代码:
<强> DEMO 强>
#buton{text-align:right;
height: 100px;
width: 100%;
z-index: 100;
position: fixed;
bottom: 0;
}
答案 1 :(得分:0)
删除
top:0
并设置
bottom:0; position: fixed; right: 0;
#buton {
text-align: right;
height: 100px;
width: 100%;
z-index: 100;
position: fixed;
bottom: 0;
right: 0;
}
答案 2 :(得分:0)
问题在于top:0;
由于您需要按住按钮以固定在页面的右下角,因此您应该使用bottom: 0;position: fixed;
更新以下部分
#buton{
text-align:right;
height: 100px;
top: 0;
width: 100%;
z-index: 100;
}
到下面给出的那个,
#buton{
text-align:right;
height: 100px;
bottom:0;
position: fixed;
width: 100%;
z-index: 100;
}
它会像魅力一样发挥作用。
进行了一些更改,请参阅演示..
更新: See demo
答案 3 :(得分:0)
将所有内容包裹在container
中,并将其置于relative
使用#buton
absolute
bottom:0
让myButton
独立于任何职位
html,body{
height:100%; /* important */
}
#conatiner {
position: relative;/* added*/
height:100%;/* important */
}
#buton {
text-align:right;
width: 100%;
z-index: 100;
position: absolute;/* added*/
bottom: 0;
}