Having an issue with my code on a Samsung Galaxy S5 in Chrome 54.0.2840.85, Android 6.01.
You can view the problematic codepen here: http://codepen.io/johnsonjpj/pen/jVpreB
The border displays correctly on Firefox and iPhones, but not on my device.
Troubleshooting reveals it may be related to the width of the .image-boundary
class or the border-color
.
Possibly these lines are causing the issue:
.image-boundary {
border-top-color: #d64700;
border-color: #ffffff;
background: #002a4a;
}
.image-boundary {
position: relative;
width: 50%;
height: 0;
padding: 25% 0;
margin: 1em auto;
border-radius: 50%;
border-width: .33em;
border-style: solid;
overflow: hidden;
}