Struggling with creating a curved line using border-left. The top and bottom of the border are fading, and I can't seem to get rid of it.
The design I'm aiming for
https://i.sstatic.net/3mLBT.png
What I've achieved so far:
https://i.sstatic.net/qDh7q.png
This is my current code:
.border {
border-left: 2px dashed #c6c6c6;
border-radius: 10%/200px;
}
<div class="border"></div>
Any suggestions on how to resolve this issue would be greatly appreciated. Thank you!