这个page是针对bootstrap3的。
屏幕宽度较大时,有两列.left
和.right
。
在.left
列中,有一个按钮.more
。
我想move单元底部的按钮.approach_r
PS:
区块.right
中的文字数量可能会发生变化
答案 0 :(得分:0)
这会对你有所帮助 检查此fiddle
.more {
position: fixed;
bottom: auto;
top: 5px;
z-index:5
}
@media (min-width: 992px) {
.more {
bottom: 5px;
top:auto;
}
}