I make progress indicator.
Initially I planned to play around with gradients, but it turned out (suddenly!) I needed support for IE9 . Tell me, please, an example of the implementation or direction for the search. I tried svg, but there, as far as I understand, the arc is already set through <path/> and the dots + do not understand how to attenuate the line.
* { box-sizing: border-box; } .circle { width: 100px; height: 100px; border-radius: 50%; padding: 2px; background: linear-gradient(45deg, gray 60%, red); } .inner { width: 100%; height: 100%; border-radius: inherit; text-align: center; line-height: 90px; background-color: #fff; } <div class="circle"> <div class="inner">13%</div> </div> 