- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
<!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>
- Related Articles
- Bootstrap 4 .rounded-bottom class
- Bootstrap 4 .rounded-circle class
- Bootstrap 4 .rounded-left class
- Bootstrap 4 .rounded-right class
- img-rounded Bootstrap class
- Add top rounded corners to an element in Bootstrap 4
- Bootstrap 4 .card-img-top class
- border-top-0 class in Bootstrap 4
- Bootstrap navbar-static-top class
- Add bottom rounded corners to an element in Bootstrap 4
- Usage of Bootstrap navbar-fixed-top class
- Bootstrap 4 .card-columns class
- Bootstrap 4 .border-light class
- Bootstrap 4 .border-primary class
- Bootstrap 4 .flex-*-column class

Advertisements