I want to make the following design with css, but it does not work for me. This is my code.
.card-face-path {
background: -webkit-repeating-linear-gradient(#BA68C8, #BA68C8 3px, transparent 3px, transparent 6px);
background: repeating-linear-gradient(#BA68C8, #BA68C8 3px, transparent 3px, transparent 6px);
border-color: #BA68C8;
}
.card-face-path {
position: absolute;
left: 105px;
top: 36px;
width: 2px;
height: 23px;
}
<div class="card-face-path"></div>
The result I want to obtain is the following: