Files
30-seconds-of-code/snippets/circle.md
2019-08-22 12:30:43 +03:00

557 B

title, tags
title tags
Circle visual,intermediate

Creates a circle shape with pure CSS.

HTML

<div class="circle"></div>

CSS

.circle {
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  background: #333;
}

Demo

Explanation

border-radius: 50% curves the borders of an element to create a circle.

Since a circle has the same radius at any given point, the width and height must be the same. Differing values will create an ellipse.

Browser support