gpt4 book ai didi

css - 如何让图像显示实际尺寸?

转载 作者:行者123 更新时间:2023-11-28 01:20:38 30 4
gpt4 key购买 nike

我在 div 中有一张图片,我的图片最大尺寸为 40%。如何使图像成为实际大小?

.v-guide img {
width: 40%;
border: 1px black solid;
float: left;
margin: 0 12px 0 0;
}

这就是我的风格。如何在 img 标签中添加样式以使图像具有实际样式,甚至最大尺寸为 80%?

最佳答案

只需将 max-width 添加到样式中,不要用 width 强制其宽度。

img {
max-width: 80%;
}

div {
border: 1px solid red;
}
<div>
<div>
<img src="http://via.placeholder.com/1000x150">
<img src="http://via.placeholder.com/350x150">
<img src="http://via.placeholder.com/10000x150">
</div>
</div>

关于css - 如何让图像显示实际尺寸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51523877/

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