gpt4 book ai didi

html - '位置: fixed' is not applying in Samsung S3

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

我在我的站点中使用弹出窗口,并且在加载图像时应用了 .gif。我希望该图像固定在屏幕中央。我正在使用以下 CSS:

background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
bottom: 0;
display: block;
height: 100px;
left: 0;
margin: auto;
padding: 20px;
position: fixed;
right: 0;
top: 0;
width: 100px;
border-radius:25px;
box-sizing:border-box;

在除 Samsung S3 之外的所有设备和桌面上都很好。

我们是否有替代 position: fixed 的方法。

最佳答案

遇到此类问题可以查看http://caniuse.com/#feat=css-fixed您还应该在位置之后声明顶部、底部、左侧、右侧等指令,并为您的 0 提供测量值

例如

position: fixed;
right: 0px;
left: 0px;
top: 0px;
bottom: 0px;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
display: block;
height: 100px;
margin: auto;
padding: 20px;
width: 100px;
border-radius:25px;
box-sizing:border-box;

关于html - '位置: fixed' is not applying in Samsung S3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27793800/

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