How to Create Circles with CSS
Click on the image to view the demo. This is David Walsh‘s clever technique in creating one of the commonly used shapes in design – the circle — using only CSS and without any help of Photoshop. CSS This sets the border-radius that creates any size of circle display. .circle { border-radius: 50%; width: 200px; [...]