通过CSS实现渐变色边框的几种方法:

一、用border-image 来实现:
CSS代码如下:

.box {
            width: 200px ;
            height: 200px ;
            border: 10px solid #ddd;
            border-image: linear-gradient(rgb(89, 0, 255),pink) 30 30;
        }

效果如下:
在这里插入图片描述

二、使用background-image实现:
CSS代码如下:

.box1 { 
	width: 200px; 
   	height: 200px; 
    box-sizing: border-box; 
    padding: 10px; 
    border-radius: 50%; 
    background-image: linear-gradient(top, pink 0%, blue 30%, yellow 60%, green 90%);  
}
.box2 { 
	width:100%; 
    height:100%; 
    border-radius:50%; 
    background:#fff; 
}

三、使用background-clip,backgound-origin,backgound-image实现:
CSS代码如下:

.border-box {
  border: 5px solid transparent;
  border-radius: 15px;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(to right, #222, #222), linear-gradient(90deg, #8F41E9, #578AEF);
}

以上就是实现渐变色边框的三种方法,感谢阅读。

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐