Bootstrap 4 .rounded-top class


Use the rounded-top class in Bootstarp 4 to set top rounded corners to an element.

Using the class, I have set two rectangles using the same class −

<div class="new rounded-top"></div>
<div class="new rounded-top"></div>

A new class is also set for div, to style it,

<style>
.new {
  width: 60px;
  height: 60px;
  background-color: #26CF12;
  margin: 20px;
}
</style>

You can try to run the following code to implement the rounded-top class −

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>
   .new {
     width: 60px;
     height: 60px;
     background-color: #26CF12;
     margin: 20px;
   }
   </style>
</head>
<body>
  <div class="container">
    <h2>Rounded Corner</h2>
    <p>We have two rectangles with top rounded corner:</p>
    <div class="new rounded-top"></div>
    <div class="new rounded-top"></div>
  </div>
</body>
</html>

Updated on: 18-Jun-2020

243 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements