When attempting to create a simple conic-gradient using CSS, I've noticed a peculiar horizontal line that keeps appearing. These lines seem unpredictable and sometimes disappear when the window is resized.
div {
width: 101.5px;
height: 101.5px;
background: conic-gradient(
#000 0% 7%,
#cfcfcf 7.3% 40.3%,
#666 40.6% 73.7%,
#000 74% 100%
);
}
<div></div>
What could be causing this issue? Is it advisable to completely avoid using conic-gradients?