用css画的一个图形  空心正方形+四边四色

 div{
       width: 100px;
       height: 100px;
       border: 100px solid black;
   border-left-color:darkcyan;
   border-right-color: rgb(255, 0, 157);
   border-top-color:royalblue;
   border-bottom-color: blueviolet;    
   }

用css画的一个图形  空心正方形+四边四色

 div{
       width: 0;
       height: 0;
       border: 100px solid black;
   border-left-color:coral;
   border-right-color:transparent;
   border-top-color:transparent;
   border-bottom-color:coral;    
   }

Transparent   

相关文章:

  • 2021-12-16
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-15
  • 2022-12-23
  • 2021-12-04
  • 2021-08-13
  • 2022-12-23
相关资源
相似解决方案