1. 程式人生 > >字型顏色漸變和邊框漸變的一個方法

字型顏色漸變和邊框漸變的一個方法

.test {
position: relative;
margin: auto;
height: 80px;
width: 200px;
border-radius: 40px;
background-color: #fff;
&:before {
content: '';
background: linear-gradient(to right, red, blue) no-repeat;
position: absolute;
top: -5px;
left: -5px;
height: 90px;
width: 210px;
border-radius: 45px;
z-index: -1;
}
}