gpt4 book ai didi

html - 设置图像高度的问题

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

所以我想知道是否有一种方法可以在不使用 JavaScript 的情况下将图像的高度设置为其父容器高度的 75%?

有什么想法吗?

最佳答案

为容器指定一个绝对高度,height:75% 将适用于 img:

<div>
<img src="http://placehold.it/100x1"/> <!-- This is a 1px high image -->
</div>
div {
height:100px; /* Absolute height on container. */
width:100px;
background:#f00; /* I've used this to illustrate that the image fills 75%. */
}

img {
width:100%; /* Force the width to 100% to prevent scaling. */
height:75%; /* Height percentage declaration. */
}

JSFiddle demo .

关于html - 设置图像高度的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19307022/

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