Can the border color of a simple line div be changed from top to bottom using GreenSock?
.line {
position: relative;
border: 1px solid #c3ced8;
width: 0;
height: 50px;
display: block;
content: '';
z-index: 1;
top: -19px;
margin: 0;
left: 5.3px;
margin-bottom: -30px;
}
<div class="line"></div>
Looking to use GreenSock library to change the border color from top to bottom.