button为什么写了absolute后就跑到页面最下方了?

来源:2-3 页面切换部分的代码封装

刘颜

2016-12-30 10:49

button {
    width: 100px;
    height: 50px;
}

.button {
    position: absolute;
    bottom: 0;
}

写回答 关注

1回答

  • 慕婉清9494727
    2016-12-30 15:08:53
    已采纳

    position:absolute是绝对定位,相对于屏幕的绝对位置,不受其他因素影响,bottom:0是距离底部0px的意思

    刘颜

    非常感谢!

    2016-12-30 16:00:07

    共 1 条回复 >

H5+JS+CSS3实现七夕言情

为七夕节准备的H5+JS+CSS3特效案例,由浅入深案例拆分讲解

211525 学习 · 540 问题

查看课程

相似问题