"Image section with no gutters"
Bootstrap 4.1.1 Snippet by anjalish

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap 4 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.5.2/css/bootstrap.min.css"> <!--font--> <link rel="preconnect" href="https://fonts.gstatic.com"> <link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Spartan:wght@100&display=swap" rel="stylesheet"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> <style> h1 { font-family: 'Abril Fatface', cursive;} .jumbotron { margin-bottom: 0rem;} </style> </head> <body> <section> <div class="container"> <div class="row no-gutters"> <div class="col-xs-6 col-sm-6 col-md-6 col-lg-6 col-xl-6"> <!--img--> <img src="https://dummyimage.com/600x400/000/fff" alt="demo-img" class="img-fluid w-100"> </div> <div class="col-xs-6 col-sm-6 col-md-6 col-lg-6 col-xl-6"> <!--text--> <div class="jumbotron jumbotron-fluid bg-primary text-white"> <div class="container"> <h1 class="text-center">Beginner Guide</h1> <p class="text-center">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknown printer took a galley of type and scrambled it to make a type specimen book.It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages.</p> </div> </div> </div> </div> <!--2--> <div class="row no-gutters"> <div class="col-xs-6 col-sm-6 col-md-6 col-lg-6 col-xl-6"> <!--text--> <div class="jumbotron jumbotron-fluid bg-primary text-white"> <div class="container"> <h1 class="text-center">Beginner Guide</h1> <p class="text-center">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknown printer took a galley of type and scrambled it to make a type specimen book.It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages.</p> </div> </div> </div> <div class="col-xs-6 col-sm-6 col-md-6 col-lg-6 col-xl-6"> <!--img--> <img src="https://dummyimage.com/600x400/000/fff" alt="demo-img" class="img-fluid w-100"> </div> </div> </div> </section> </body> </html>

Related: See More


Questions / Comments: