Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap 4 Nested 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="rounded-circle 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> <!-- Nested media object --> <div class="media mt-2"> <img src="/examples/images/avatar.svg" class="rounded-circle mr-3" alt="Sample Image"> <div class="media-body"> <h5 class="mt-0">Clark Kent <small><i>Posted on January 12, 2019</i></small></h5> <p>Thanks, you found this component useful. Don't forget to check out other Bootstrap components as well. They're also very useful.</p> </div> </div> </div> </div> </div> </body> </html>