gpt4 book ai didi

css - 防止背景图像放大

转载 作者:行者123 更新时间:2023-12-04 11:37:19 24 4
gpt4 key购买 nike

我有一个带有背景图像的 div。当用户从浏览器放大页面时(使用 Ctrl & + 或 Ctrl + 滚动),我不想放大图像。缩放后图像应保持不变。有没有办法做到这一点?

这是包含背景图像的 div 的样式:

.owl-slide{
background-image: url('...');
background-repeat: no-repeat;
background-position: center;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

我知道正常行为是放大页面内的所有内容,甚至是图像。但这是客户的要求,需要解决,即使我不同意。

最佳答案

套装topleft元素的值并添加 position:absolute .还设置了widthheight .

.owl-slide {
background-image: url('http://www.freepngimg.com/download/nature/1-2-nature-png-picture.png');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
position: absolute;
top:0px;
left:0px;
width: 100%;
height: 100%;
}
<div class="owl-slide">Sample div</div>

关于css - 防止背景图像放大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45842881/

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