📜  圆角渐变边框css代码示例

📅  最后修改于: 2022-03-11 14:47:52.788000             🧑  作者: Mango

代码示例4
div-border-and-content-background {
  border-top: double 5px transparent;
  
  /* first gradient is for card background, second for border background */
  background-image: linear-gradient(white,white), linear-gradient(to right, grey, black);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  }