gpt4 book ai didi

html - 图像裁剪以适合圆形容器

转载 作者:行者123 更新时间:2023-11-28 06:50:07 25 4
gpt4 key购买 nike

通常我会使用 background-size: cover; 在 css 中完成图像裁剪。但对于这个元素,我不想在 html 文档中保持明确的内容。

这是 html:

<div class="itemList">
<div class="item">
<img src="images/image.png">
</div>
</div>

.item 是一个圆形容器(例如。

border-radius: 100%;
border: 1px solid black;
color: #ffffff;
height: 400px;
width: 400px;

)

我在图像上设置了固定宽度,因此它的一部分从容器中泄漏出来。泄漏的公园是需要隐藏的。

最佳答案

它应该与 overflow: hidden; 一起使用

.item {
border-radius: 100%;
border: 1px solid black;
color: #ffffff;
height: 400px;
width: 400px;
overflow: hidden;
}
<div class="itemList">
<div class="item">
<img src="http://lorempixel.com/g/500/500/">
</div>
</div>

关于html - 图像裁剪以适合圆形容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33818306/

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