gpt4 book ai didi

html - 无法调整图像的高度

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

代码:

<div style="text-align:center;">
<img src="https://gsamaras.files.wordpress.com/2016/04/satou.jpg" style="height:100%;" alt="satou" />
Match for the newborn son of Marialena Satou, 3/4/2016. Wish him health! :)
</div>

我的 site 中的结果.

没有样式,它会是一样的:

enter image description here

我想降低图片的高度。我在这里缺少什么?

最佳答案

您可以用 spandiv 包装 img:

<span class="img-wrapper">
<img src="...">
</span>

然后为这两个元素设置样式:

.img-wrapper {
display: inline-block;
}

.img-wrapper img {
width: 50%;
}

将宽度设置为 50% 也会将高度调整为 50%。

关于html - 无法调整图像的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36390774/

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