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

Live Demo

<!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>
Updated on: 2020-06-12T17:48:04+05:30

354 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements