I am trying to design a cicrle with following codes:
.eclipse {
border-radius: 50%;
border: 1px dashed #1f2b6a;
background: none;
}
<svg class="eclipse" height="100" width="100">
<circle cx="50" cy="50" r="40" stroke="white" stroke-width="3" fill="#1f2b6a" />
Sorry, your browser does not support SVG.
</svg>
Can anyone help me to get it done?
