<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Vertical Alignment of Bootstrap Media Objects</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> </head> <body> <div class="m-4"> <!--Top aligned media--> <div class="d-flex"> <div class="flex-shrink-0"> <img src="examples/resources/media-object1.png" width="80" height="80" alt="Sample Image"> </div> <div class="flex-grow-1 ms-3"> <h5>Top aligned media <small class="text-muted"><i>This is Default</i></small></h5> <p>Excellent quality! My preferred. At some time, I want to use this Bootstrap component, and I'll let you know when I do.</p> <p>I'm glad you found this part helpful. Don't forget to look at further Bootstrap components. They are likewise really helpful.</p> <p>fantastic trait Love it. Undoubtedly, I'll utilize this Bootstrap component at some point in the future, and I'll let you know when I do.</p> </div> </div> <hr> <!--Middle aligned media--> <div class="d-flex"> <div class="flex-shrink-0 align-self-center"> <img src="examples/resources/media-object1.png" width="80" height="80" alt="Sample Image"> </div> <div class="flex-grow-1 ms-3"> <h5>Middle Aligned Media</h5> <p>Excellent quality! My preferred. At some time, I want to use this Bootstrap component, and I'll let you know when I do.</p> <p>I'm glad you found this part helpful. Don't forget to look at further Bootstrap components. They are likewise really helpful.</p> <p>fantastic trait Love it. Undoubtedly, I'll utilize this Bootstrap component at some point in the future, and I'll let you know when I do.</p> </div> </div> <hr> <!--Bottom aligned media--> <div class="d-flex"> <div class="flex-shrink-0 align-self-end"> <img src="examples/resources/media-object1.png" width="80" height="80" alt="Sample Image"> </div> <div class="flex-grow-1 ms-3"> <h5>Bottom Aligned Media</h5> <p>Excellent quality! My preferred. At some time, I want to use this Bootstrap component, and I'll let you know when I do.</p> <p>I'm glad you found this part helpful. Don't forget to look at further Bootstrap components. They are likewise really helpful.</p> <p>fantastic trait Love it. Undoubtedly, I'll utilize this Bootstrap component at some point in the future, and I'll let you know when I do.</p> </div> </div> </div> </body> </html>