gpt4 book ai didi

html - 如何设置 jumbotron 响应

转载 作者:太空宇宙 更新时间:2023-11-04 06:49:09 24 4
gpt4 key购买 nike

我尝试将 jumbotron 设置为在移动设备上响应,这对我来说太难了。

.jumbotron {
background-image: url("../images/cover.fw.png");
background-color: transparent;
margin-bottom: 0;
height: 100vh;
background-repeat: no-repeat;
background-position: center;
-webkit-background-size: cover;
background-size: cover;
}
<header>

<div class="jumbotron">

</div>
</header>

桌面 View :

Desktop View

手机 View :

Phone View

我需要帮助来完成这项任务。

最佳答案

如果您想在不切割边的情况下使图像具有响应性,请设置“background-size: contain”

.jumbotron {
background-image: url("/image/LmAwL.png");
background-color: transparent;
margin-bottom: 0;
height: 100vh;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
<header>
<div class="jumbotron"></div>
</header>

关于html - 如何设置 jumbotron 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53006889/

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