顶部和底部倾斜边框css

cnjp1d6j  于 2022-12-15  发布在  其他
关注(0)|答案(1)|浏览(117)

我如何使用CSS得到这种边框。顶部和底部有不同风格的边框,顶端有轻微的Angular
我想实现这个Result

border: 15px solid;
border-image: url(border.png) 30 / 15px / 0px stretch;
iyr7buue

iyr7buue1#

使用渐变和背景:

img {
  padding: 20px 0; /* control the border size here */
  --g: grey 30%,lightblue 0; /* control the coloration here */
  background:
   linear-gradient(-45deg,var(--g)) bottom,
   linear-gradient(135deg,var(--g)) top;
  background-size: 100% 50%;
  background-repeat:no-repeat;
}
<img src="https://picsum.photos/id/1069/200/200">

相关问题