Form the element as a circle in Bootstrap


To form an element as a circle, use the .rounded-circle class in Bootstrap.

It is easy to implement it −

<div class="test rounded-circle"></div>

Let us see an example to create a circle in Bootstrap −

Example

Live Demo

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
    <style>
    .test {
      width: 300px;
      height: 300px;
      background-color: orange;
    }
    </style>
</head>
<body>
  <div class="container">
    <h2>Circle</h2>
    <p>We have a circle below:</p>
    <div class="test rounded-circle"></div>
  </div>

</body>
</html>

Updated on: 17-Jun-2020

300 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements