gpt4 book ai didi

html - 调整移动设备背景图像的大小

转载 作者:太空狗 更新时间:2023-10-29 12:27:15 25 4
gpt4 key购买 nike

当时,我一直在玩我的网站,并在一些图片上添加了"new"横幅,我已经用我能想到的最简单的方法完成了,如下所示。

<img style="background:url(images/pic3.jpg)" src="images/new.png" alt="" /></a>

现在在桌面上查看时效果很好,因为图像的大小已经适合网站,但是当我在移动设备上查看时,.png 图像会缩小,但背景图像不会缩小..

我知道我从 css 中遗漏了一些东西,但由于我还在学习,我不知道它到底遗漏了什么,这就是你们进来的地方..

这是我的 html 的更多内容..

<div class="thumbnail">
<a href="#">
<img style="background:url(images/pic3.jpg)" src="images/new.png" alt="" />
</a>
</div>

这是有问题的移动 css..

.thumbnails
{
}

.thumbnails .thumbnail
{
border-top: solid 1px #e5e5e5;
padding-top: 2em;
margin-top: 2em;
}

.thumbnails .first
{
border-top: 0;
padding-top: 0;
margin-top: 0;
}

.thumbnails .thumbnail img
{
margin-top: 5px;
height: 180px;
margin-right: 8px;
}

.thumbnails .thumbnail blockquote
{

margin-left: 143px;
}

所以基本上,我只需要知道如何使背景图像像前景图像(.png 图像)一样缩小

我确定有人可以提供帮助,在此先感谢您。

编辑:这是一个快速的 fiddle ,所以你可以看到发生了什么...... http://jsfiddle.net/bBMdp/

谢谢

最佳答案

试试这个:

.thumbnails .thumbnail img{
margin-top: 5px;
height: 180px;
margin-right: 8px;

background-size: 100% 100%;

}

或者:

.thumbnails .thumbnail img{
margin-top: 5px;
height: 180px;
margin-right: 8px;

background-size: cover;

}

来源

MDN - background-size - CSS

关于html - 调整移动设备背景图像的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15831073/

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