如何在CSS规则中将图像的最大高度设置为父div的高度?

问题描述 投票:0回答:2

我需要将图像的高度约束到包含文本的父级div高度。有没有办法在CSS中这样做?

我有以下内容:

img {
  float: right;
  max-width: 500px;
  max-height: inherit;
}
<div>
  <img src="https://images.freeimages.com/images/large-previews/e51/tokyo05-2-1447803.jpg" />
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
</div>
html css image height
2个回答
2
投票

绝对定位是解决方案之一

img {
  position: absolute;
  right: 0;
  max-width: 500px;
  max-height: 100%;
}
div {
  position: relative;
}

0
投票

我会用图像作为背景

.box {
  background:url("https://images.freeimages.com/images/large-previews/e51/tokyo05-2-1447803.jpg") right/auto 100% no-repeat;
}
<div class="box">
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
  <p>Text</p>
</div>
© www.soinside.com 2019 - 2024. All rights reserved.