gpt4 book ai didi

html - 背景大小 :cover equivalent

转载 作者:太空宇宙 更新时间:2023-11-04 11:07:05 26 4
gpt4 key购买 nike

是否有办法“模仿”background-size:cover; 的行为? (参见 http://www.w3schools.com/cssref/playit.asp?filename=playcss_background-size&preval=cover )与 <img> <div> 内的标签.我想要这样的结构:

<div style="width:100%, height=30%">
<img ng-src="{{data.imageData}}"/>
</div>

对不起,如果我对这个话题不是很清楚,我不知道如何说得更清楚。

最佳答案

解决方案

您可以使用 object-fitobject-position 属性来完成此操作

分别设置为covertop left

img {
display: block;
width:inherit;
height: inherit;
object-fit: cover;
object-position: top left;
}

这些是如何工作的

这些 CSS3 属性在 css-tricks.com 中解释如下

The object-fit property defines how an element responds to the height and width of its content box. It's intended for images, videos and other embeddable media formats in conjunction with the object-position property. Used by itself, object-fit lets us crop an inline image by giving us fine-grained control over how it squishes and stretches inside its box.

详细用法引用link1link2

关于html - 背景大小 :cover equivalent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33893468/

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