Bootstrap Media Objects
We are discusses about Bootstrap Media Objects. Abstract object styles for building various types of components (like blog comments, Tweets, etc) that feature a left- or right-aligned image alongside textual content.

1. Default Media
2. Media List
Default media Object
The default media displays a media object (images, video, audio) to the left or right of a content block.
<!DOCTYPE html>
<html>
<head>
   <title>Default Media Object</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
   <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
   <script type="text/javascript" src="js/jquery.min.js"></script>
   <script type="text/javascript" src="js/bootstrap.min.js"></script>
</head>
<body>
 
<div class="container-fluid">
 
<!-- Left aligned media object -->
  <div class="media">
    <div class="media-left">
      <img src="images/bt-image.jpg" class="media-object" style="width:60px; height:50px;">
    </div>
    <div class="media-body">
      <h4 class="media-heading">Free Time Learning <small><i>Posted on Jun 29, 2017</i></small></h4>
      <p>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..</p>
    </div>
  </div>
  <hr>
  
  <!-- Right-aligned media object -->
  <div class="media">
    <div class="media-body">
      <h4 class="media-heading">Free Time Learning <small><i>Posted on Jun 29, 2017</i></small></h4>
      <p>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..</p>
    </div>
    <div class="media-right">
      <img src="images/bt-image.jpg" class="media-object" style="width:60px; height:50px;">
    </div>
  </div>
</div>
 
</div>
 
 
</body>
</html>
Output :

Free Time Learning Posted on Jun 29, 2017

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..


Free Time Learning Posted on Jun 29, 2017

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..

Media Alignments
The media object can also be top, middle or bottom aligned with the media-top, media-middle or media-bottom class.
<!DOCTYPE html>
<html>
<head>
   <title>Media Alignments</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
   <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
   <script type="text/javascript" src="js/jquery.min.js"></script>
   <script type="text/javascript" src="js/bootstrap.min.js"></script>
</head>
<body>
 
<div class="container-fluid">
 
  <div class="media">
    <div class="media-left media-top">
       <img src="images/bt-image.jpg" class="media-object" style="width:60px; height:50px;">
    </div>
    <div class="media-body">
      <h4 class="media-heading">Top Alignment <small><i>Posted on Jun 29, 2017</i></small></h4>
      <p>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..</p>
       <p>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..</p>
    </div>
  </div>
  
  <hr />
  
  <div class="media">
    <div class="media-left media-middle">
       <img src="images/bt-image.jpg" class="media-object" style="width:60px; height:50px;">
    </div>
    <div class="media-body">
      <h4 class="media-heading">Middle Alignment <small><i>Posted on Jun 29, 2017</i></small></h4>
       <p>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..</p>
        <p>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..</p>
    </div>
  </div>
  
  <hr />
  
  <div class="media">
    <div class="media-left media-bottom">
       <img src="images/bt-image.jpg" class="media-object" style="width:60px; height:50px;">
    </div>
    <div class="media-body">
      <h4 class="media-heading">Bottom Alignment <small><i>Posted on Jun 29, 2017</i></small></h4>
     <p>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..</p>
		<p>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..</p>
    </div>
  </div>
 
 
</div>
 
 
</body>
</html>
Output :

Top Alignment Posted on Jun 29, 2017

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..

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.


Middle Alignment Posted on Jun 29, 2017

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..

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.


Bottom Alignment Posted on Jun 29, 2017

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.

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.

Media List (Nesting Media Objects)
Media objects can also be nested (a media object inside a media object).
<!DOCTYPE html>
<html>
<head>
   <title>Media Lists (Nesting Media Objects)</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
   <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
   <script type="text/javascript" src="js/jquery.min.js"></script>
   <script type="text/javascript" src="js/bootstrap.min.js"></script>
</head>
<body>
 
<div class="container-fluid">
 
 
 <div class="media">
    <div class="media-left">
      <img src="images/bt-image.jpg" class="media-object" style="width:60px; height:50px;">
    </div>
    <div class="media-body">
      <h4 class="media-heading">Free Time Learning 
        <small><i>Posted on Jun 29, 2017</i></small>
      </h4>
      <p>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.</p>
      
      <!-- Nested media object -->
      <div class="media">
        <div class="media-left">
          <img src="images/bt-image.jpg" class="media-object" style="width:60px; height:50px;">
        </div>
        <div class="media-body">
          <h4 class="media-heading">Free Time Learning 
            <small><i>Posted on Jun 29, 2017</i></small>
         </h4>
          <p>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.</p>
 
          <!-- Nested media object -->
          <div class="media">
            <div class="media-left">
              <img src="images/bt-image.jpg" class="media-object" style="width:60px; height:50px;">
            </div>
            <div class="media-body">
              <h4 class="media-heading">Free Time Learning 
                <small><i>Posted on Jun 29, 2017</i></small>
              </h4>
              <p>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.</p>
            </div>
          </div>
          
        </div>
        
        <!-- Nested media object -->
        <div class="media">
          <div class="media-left">
            <img src="images/bt-image.jpg" class="media-object" style="width:60px; height:50px;">
          </div>
          <div class="media-body">
            <h4 class="media-heading">Free Time Learning 
              <small><i>Posted on Jun 29, 2017</i></small>
            </h4>
            <p>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.</p>
          </div>
        </div>
        
      </div>
    </div>
    
    <!-- Nested media object -->    
    <div class="media">
      <div class="media-left">
        <img src="images/bt-image.jpg" class="media-object" style="width:60px; height:50px;">
      </div>
      <div class="media-body">
        <h4 class="media-heading">Free Time Learning 
          <small><i>Posted on Jun 29, 2017</i></small>
        </h4>
        <p>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.</p>
      </div>
    </div>
 
  </div>
 
 
</div>
 
 
</body>
</html>
Output :

Free Time Learning Posted on Jun 29, 2017

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.

Free Time Learning Posted on Jun 29, 2017

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.

Free Time Learning Posted on Jun 29, 2017

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.

Free Time Learning Posted on Jun 29, 2017

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.

Free Time Learning Posted on Jun 29, 2017

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.