问答详情
源自:2-3 页面切换部分的代码封装

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

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

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

提问者:刘颜 2016-12-30 10:49

个回答

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

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