Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Horizontal Alignment of Bootstrap 4 Media Objects</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script> <style> .bs-example{ margin: 20px; } .media img{ width: 80px; } </style> </head> <body> <div class="bs-example"> <div class="media"> <img src="/examples/images/avatar.svg" class="mr-3" alt="Sample Image"> <div class="media-body"> <h5 class="mt-0">Jhon Carter <small><i>Posted on January 10, 2019</i></small></h5> <p>This is really an excellent feature! I love it. One day I'm definitely going to use this Bootstrap media object component into my application.</p> </div> </div> <hr> <div class="media"> <div class="media-body"> <h5 class="mt-0">Jhon Carter <small><i>Posted on January 10, 2019</i></small></h5> <p>This is really an excellent feature! I love it. One day I'm definitely going to use this Bootstrap media object component into my application.</p> </div> <img src="/examples/images/avatar.svg" class="ml-3" alt="Sample Image"> </div> </div> </body> </html>