Attempting to craft a CSS circle that mirrors the image below:
...with just a single div
:
<div class="myCircle"></div>
solely utilizing CSS rules. No SVG, WebGL, DirectX, etc. permitted.
My initial approach involved constructing a complete circle and then gradually hiding half of it with an additional div
, which technically does the job, but I'm seeking a more refined solution.