w3resource

HTML-CSS: Circle

HTML-CSS : Exercise-33 with Solution

Using HTML, CSS creates a circular shape with pure CSS.

  • Use border-radius: 50% to curve the borders of the 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.

HTML Code:

<!--License: https://bit.ly/3GjrtVF-->
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Using HTML, CSS creates a circular shape with pure CSS.</title>
</head>
<body>
<div class="w3r-circle"></div>
</body>
</html>

CSS Code:

.w3r-circle {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  background: #CC87DD;
}

HTML-CSS Editor:

See the Pen html-css-practical-exercises by w3resource (@w3resource) on CodePen.


What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.

Share this Tutorial / Exercise on : Facebook and Twitter

HTML-CSS: Tips of the Day

How to get CSS to select ID that begins with a string ?

[id^=product]

^= indicates "starts with". Conversely, $= indicates "ends with".

The symbols are actually borrowed from Regex syntax, where ^ and $ mean "start of string" and "end of string" respectively.

Ref: https://bit.ly/3rSZ2t7