gpt4 book ai didi

html - 如何在不拉伸(stretch)的情况下适应图像并在html中的div标签中保持纵横比

转载 作者:太空宇宙 更新时间:2023-11-04 13:22:18 25 4
gpt4 key购买 nike

我的图片尺寸是 640*820,我想把这张图片放到 310*520 的屏幕上。在这样做的同时保持纵横比(没有拉伸(stretch))。

<div class="abc" style="
background: url("images/phone.png");
position: absolute;
max-width: 100%;
width: auto;
margin-left:10px;
background-size: contain;
top: 50px;">

最佳答案

你可以只声明图像的宽度并让高度自动

.div img {
width: 310px;
height: auto;
}
<div class="div">
<img src="#" title="#">
</div>

关于html - 如何在不拉伸(stretch)的情况下适应图像并在html中的div标签中保持纵横比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23967053/

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