gpt4 book ai didi

html - CSS:使图像完全适合div

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

在新闻网站上工作,一旦我开始使用移动设备,我希望图像适合 div 的整个宽度……无论它是什么。这些图像最初的宽度为 240 像素,因此我们正在谈论将它们向上凸起。这是我目前正在使用的:

.thumb { float: left; clear: both; width: 100%; height: auto; margin: 0; }
.thumb img { max-width: 100%; max-height: 100%; }

所以在我的 iPhone 上,图片有点太小了,因为 div 是 320px 而 img 是 240。当然,这会改变,例如 480px 的风景。所以它需要灵活。有什么建议吗?

最佳答案

您可以尝试以下操作,将图像宽度设置为 100%。

.thumb {
float: left;
clear: both;
width: 100%;
height: auto;
margin: 0;
}
.thumb img {
width: 100%;
}
<div class="thumb">
<img src="http://placehold.it/200x100">
</div>

关于html - CSS:使图像完全适合div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29856871/

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