圆角边框曲线外[关闭]

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

我想做与图片相同的角: enter image description here enter image description here 红色部分是图像,然后另一个布局将其与底部的3个角重叠

如何用 CSS 做到这一点?

css rounded-corners
1个回答
-2
投票

只需添加

border-radius

img {
  border-radius: 3%;
}
<div>
  <img src="https://picsum.photos/200/300">
</div>

© www.soinside.com 2019 - 2024. All rights reserved.