【发布时间】:2022-01-21 19:46:27
【问题描述】:
我在搜索网站参考资料时发现了一个带有很酷的图片标题的网站。 这是来自网站的图片标题
它在左下角和右下角都有边框半径,所以让图像看起来很酷。 我试过使用border-bottom-left-radius和border-bottom-right-radius。但它看起来不一样。这是我尝试过的代码
#image-header{
height:100px;
width:500px;
border-bottom-left-radius: 2rem;
border-bottom-right-radius: 2rem;
background:green;
}
我只能使用 CSS 来实现吗?
【问题讨论】:
标签: css