到目前为止,我只能添加2种颜色...
.border{
position:absolute;
width: 20%;
height: 1px;
background-color: grey;
}
.border:before{
content: '';
display: block;
border-bottom: 1px solid blue;
width: 50%;
}
<span class="border"></span>