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>
1.4m articles
1.4m replys
5 comments
57.0k users