

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 Questions & Answers
- CSS3 Rounded corners
- Bootstrap class Jumbotron
- Add right rounded corners to an element in Bootstrap
- Add left rounded corners to an element in Bootstrap
- Create a padded grey box with rounded corners in Bootstrap
- Add bottom rounded corners to an element in Bootstrap 4
- Add top rounded corners to an element in Bootstrap 4
- Working with Bootstrap Jumbotron
- How to create CSS3 Rounded Corners?
- Set a container that spans the full width of the screen with Bootstrap
- img-rounded Bootstrap class
- How to create EditText with rounded corners in Android?
- Bootstrap 4 .rounded-circle class
- Bootstrap 4 .rounded-left class
- Bootstrap 4 .rounded-right class
Advertisements