Hey there! I'm having trouble with a CSS shape that is supposed to look like a new moon. It displays perfectly in Chrome and Firefox, but in Safari, the outline of the entire circle is showing up. Does anyone know how to fix this issue and make the new moon shape work correctly in Safari?
https://i.sstatic.net/ay8Tt.png
Here is an image of the current result in Safari:
.circle {
height: 50px;
width: 50px;
border-left: 10px solid red;
border-radius: 50%;
}
<div class="circle"></div>