Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

1 Answer
Alex Onsman

To set an element to have rounded corner, use the rounded-bottom class in Bootstrap 4.

Set the rounded-bottom class:

<div class="demo rounded-bottom"></div>

In the above <div>, I have also set another class for styling the element:

.demo {
  width: 100px;
  height: 120px;
  margin: 10px;
  background-color: orange;
}

You can try to run the following code to implement the rounded-bottom class:

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>
    .demo {
      width: 100px;
      height: 120px;
      margin: 10px;
      background-color: orange;
    }
    </style>
  </head>
  <body>
    <div class="container">
      <h2>Rectangles</h2>
      <p>We have two rectangles with rounded corners (bottom):</p>
      <div class="demo rounded-bottom"></div>
      <div class="demo rounded-bottom"></div>
    </div>
  </body>
</html>
Advertisements

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.