gpt4 book ai didi

css - Bootstrap 背景图像对移动设备没有响应

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

我正在尝试在 Bootstrap 网页上放置背景。当网页加载到笔记本电脑或台式机时,背景图像工作正常。但是,当页面在移动设备上加载时,屏幕的某些部分仍未填充,就会出现问题。

以下是我的代码:

<body style="background: url(img/backgroung.jpg) no-repeat center center fixed"
style="-webkit-background-size: cover"
style="moz-background-size: cover"
style="-o-background-size: cover"
style="background-size: cover"
style="background-size:100% auto"
>

最佳答案

可能你想要这样的东西:

body {
background: url('img/backgroung.jpg');
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

关于css - Bootstrap 背景图像对移动设备没有响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31493640/

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