I'm trying to create a half circle border around a div using border-bottom to create this effect:
It renders correctly on chrome and firefox (can't test android although it appears correct in chrome dev tools) but on safari 11.0.3 and ios 11.2.6 you can see a top border appearing.
html:
<div class="circle-border-wrapper">
<div class="circle-border">
<h3>{{ .heading }}</h3>
<p>{{ .text }}</p>
</div>
</div>
css:
.circle-border-wrapper .circle-border:before {
content: " ";
position: absolute;
left: 0;
top: -66px;
border-bottom: 8px solid #ea3dd3;
border-radius: 50%;
height: 187%;
width: 100%;
}
Any ideas?