Does anyone know how to draw concentric circles like the RAF symbol (concentric red, white and blue circles) using only CSS?
You can make 3 concentric circles with :
border-radius:50%;
background-clip:content-box;
div{ width:80px; height:80px; border-radius:50%; background-color:#CE1126; background-clip:content-box; padding:40px; border:40px solid #00247D; }
<div></div>
2.1m questions
2.1m answers
60 comments
57.0k users