Home
Tutorials
Microsoft Technologies Tutorials
Java Programming Tutorials
Web Designing Tutorials
Script Programming Tutorials
Database Programming Tutorials
Mobile Technologies Tutorials
Other Programming Tutorials
Examples
Articles
Tools
News
Bootstrap Media Object Alignment Example
Keywords : media object, bootstrap, bootstrap media object, bootstrap media object examples, bootstrap media objects, bootstrap nested media objects, bootstrap media objects alignment example, flex utility class
Example
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Media Object Alignment Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script> <style> .bcontent { margin-top: 10px; } </style> </head> <body> <div class="container-fluid bcontent"> <h2>Bootstrap Media Object Alignment</h2> <hr /> <div class="media"> <img class="align-self-start mr-3" src="/images/defaultimg.png" alt="Suresh Dasari" style="width:80px;"> <div class="media-body"> <h5>Suresh Dasari<small><i> Posted on January 15, 2020</i></small></h5> <p>Nice tutorial on bootstrap. Every bootstrap topic covered in-detail with examples.</p> <p>Nice tutorial on bootstrap. Every bootstrap topic covered in-detail with examples.</p> <p>Nice tutorial on bootstrap. Every bootstrap topic covered in-detail with examples.</p> </div> </div> <hr /> <div class="media"> <img class="align-self-center mr-3" src="/images/defaultimg.png" alt="Suresh Dasari" style="width:80px;"> <div class="media-body"> <h5>Suresh Dasari<small><i> Posted on January 15, 2020</i></small></h5> <p>Nice tutorial on bootstrap. Every bootstrap topic covered in-detail with examples.</p> <p>Nice tutorial on bootstrap. Every bootstrap topic covered in-detail with examples.</p> <p>Nice tutorial on bootstrap. Every bootstrap topic covered in-detail with examples.</p> </div> </div> <hr /> <div class="media"> <img class="align-self-end mr-3" src="/images/defaultimg.png" alt="Suresh Dasari" style="width:80px;"> <div class="media-body"> <h5>Suresh Dasari<small><i> Posted on January 15, 2020</i></small></h5> <p>Nice tutorial on bootstrap. Every bootstrap topic covered in-detail with examples.</p> <p>Nice tutorial on bootstrap. Every bootstrap topic covered in-detail with examples.</p> <p>Nice tutorial on bootstrap. Every bootstrap topic covered in-detail with examples.</p> </div> </div> </div> </body> </html>
Click Here to See Result
Result
Previous
Next