I am created one circle using border-radius and now i want border dashed but not apply, how can i got dashed border using css.
I have created demo under this Fiddle
Css code:
.round
{
background-color: #ddd;
border: 2px dashed #000;
height: 100px;
width: 100px;
border-radius: 50%;
}
Html Code:
<div class="round">
</div>