gpt4 book ai didi

android - css 居中在 Phonegap 中不起作用

转载 作者:行者123 更新时间:2023-11-28 18:08:04 25 4
gpt4 key购买 nike

我试图将图像居中,下面有一些文字。当我在 chrome 中显示时工作正常。它也适用于使用 Opera Mobile 的模拟器。但是,当我使用 html/css 文件创建我的 phonegap 应用程序时,图像在 Android 中运行时拒绝居中。

这是我的CSS:

.centered {
width: 100%;
height: auto;
position: fixed;
top: 20%;
text-align:center;
}

有什么想法吗?

谢谢

最佳答案

这可能是 position: fixed; 的问题吗?

尝试例如。

.centered {
width: 100%;
height: auto;
position: absolute;
top: 20%;
right: 0px;
bottom: 20%;
left: 0px;
margin: auto;
text-align: center;
}

关于android - css 居中在 Phonegap 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19211889/

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