gpt4 book ai didi

html - 手机上 Bootstrap 模式的垂直对齐

转载 作者:太空狗 更新时间:2023-10-29 13:52:58 24 4
gpt4 key购买 nike

这个问题好像在github上被问过很多次了,但是我还没有遇到任何解决方案: https://github.com/twitter/bootstrap/issues/1399

如何在小屏幕上正确垂直对齐模态框?

最佳答案

编辑:从 Bootstrap 2.0.2 开始,这不再是问题。基本上,bootstrap 现在实现了下面提出的解决方案,我将把它留在这里以供引用。

通常,在小屏幕上,模态框会填满大部分窗口,因此相对于触发模态框的按钮定位没有多大意义。我通常做的只是覆盖手机的模态位置:

@media (max-width: 767px) {
.modal {
top: 20px;
// negative left margin to position horizontally.
margin: 0 0 0 -280px;
// already in modals.less, just copied for clarification:
left: 50%;
position: fixed;
}
}

(这是在 LESS 中,纯 CSS 解决方案看起来很相似)。

关于html - 手机上 Bootstrap 模式的垂直对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9842533/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com