gpt4 book ai didi

CSS图像最大宽度设置为原始图像大小?

转载 作者:数据小太阳 更新时间:2023-10-29 09:09:51 25 4
gpt4 key购买 nike

你能做到吗?我让用户将图像上传到宽度为 100% 的容器中,但我不希望图像大于其原始大小。非常感谢!

最佳答案

只是不设置图片的width,只设置max-width

img {max-width:100%; height:auto}

(height:auto 并不是必需的,因为 auto 是默认设置,但我把它放在那里是为了提醒自己我希望图像具有它的自然比例。)

此代码段有两个框,一个比图像小,一个比图像大。如您所见,较小框中的图像按比例缩小,而较大框中的图像具有正常大小。

div {border:2px outset green; margin:6px 0}
.box1 {width:100px; height:70px;}
.box2 {width:200px; height:100px;}
img {max-width:100%; height:auto}
<div class="box1">
<img src="/image/FuQYf.png" alt="" />
</div>
<div class="box2">
<img src="/image/FuQYf.png" alt="" />
</div>

关于CSS图像最大宽度设置为原始图像大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24197730/

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