作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我正在尝试制作一个 flexbox 行以使其高度与子 img 相匹配,该高度由其宽度(来自 CSS)和它的比例(来自文件)设置。是否有纯 CSS 方法来实现此行为?
.row {
width: 50%;
height: auto; /* does not work */
display: flex;
flex-direction: row;
}
.row, .row > * {
background: rgba(200, 0, 0, 0.1);
}
.row > .text {
white-space: normal;
flex-grow: 2; /* width: 100% also works */
}
.row > img:last-child {
width: 40%;
height: auto;
border: 0px;
}
<div class="row">
<div class="text">Some text content, occupies all available space.<br/>Image to the right should have 4x3 ratio</div>
<img src="https://www.christart.com/IMAGES-art9ab/clipart/5233/blown-leaves-background.jpg"><!-- a random 4x3 image from Internet -->
</div>
我是一名优秀的程序员,十分优秀!