0

页面是为 bootstrap3 制作的。

屏幕宽度较大,有 2 列.left.right. 列.left中有一个按钮.more

我想把按钮移到单元的底部.approach_r

PS:块中的文字数量.right可能会改变

4

1 回答 1

0

这将帮助您检查这个小提琴

.more {
    position: fixed;
    bottom: auto;
    top: 5px;
    z-index:5
}
@media (min-width: 992px) {
    .more {
        bottom: 5px;
        top:auto;
    }
}
于 2013-11-29T11:10:19.810 回答