I wanted to create a dashed border for my circle, but I can't seem to find any good solution. I'm trying this one:
.test{
width: 200px;
cursor: pointer;
border: 9px dashed #104F75;
border-radius: 200px;
height: 200px;
}
<div class="test"></div>
And it seems to be working fine on Chrome and Edge, but when I open it in Firefox, the circle isn't dashed at all. Moreover, border looks different when I look at it using Chrome and Edge.
I'm looking for browser-wide working solution for this kind of CSS effect, not explenation that this is a Firefox bug.