- 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
Get Bootstrap Jumbotron of full width and without rounded corners
To get a jumbotron of full width, and without rounded corners use the .jumbotron class outside all .container classes and instead add a .container within.
Example
You can try to run the following code to implement this
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "jumbotron"> <div class = "container"> <h1>Welcome to landing page!</h1> <p>Example for jumbotron.</p> <p> <a class = "btn btn-primary btn-lg" role = "button"> Click for more </a> </p> </div> </div> </body> </html>
- Related Articles
- Add left rounded corners to an element in Bootstrap
- Add right rounded corners to an element in Bootstrap
- Bootstrap class Jumbotron
- Add top rounded corners to an element in Bootstrap 4
- Create a padded grey box with rounded corners in Bootstrap
- Add bottom rounded corners to an element in Bootstrap 4
- CSS3 Rounded corners
- Working with Bootstrap Jumbotron\n
- How to create CSS3 Rounded Corners?
- img-rounded Bootstrap class
- Set a container that spans the full width of the screen with Bootstrap
- Bootstrap 4 .rounded-top class
- Bootstrap 4 .rounded-bottom class
- Bootstrap 4 .rounded-circle class
- Bootstrap 4 .rounded-left class

Advertisements