Bootstrap 媒体对象的用法


媒体对象的目的是大幅缩短信息块的开发代码。

您可以尝试运行以下代码来实现媒体对象

示例

在线演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "media">
         <a class = "pull-left" href = "#">
            <img class = "media-object" src = "https://tutorialspoint.com/sql/images/sql-mini-logo.jpg" alt = "SQL">
         </a>
         <div class = "media-body">
            <h4 class = "media-heading">Media heading</h4>
            This is some sample text. This is some sample text.
            This is some sample text. This is some sample text.
            This is some sample text. This is some sample text.
            This is some sample text. This is some sample text.
         </div>
      </div>
      <div class = "media">
         <a class = "pull-left" href = "#">
            <img class = "media-object" src = "https://tutorialspoint.com/sql/images/sql-mini-logo.jpg" alt = "SQL">
         </a>
         <div class = "media-body">
            <h4 class = "media-heading">Media heading</h4>
            This is some sample text. This is some sample text.
            This is some sample text. This is some sample text.
            This is some sample text. This is some sample text.
            This is some sample text. This is some sample text.
            <div class = "media">
               <a class = "pull-left" href = "#">
                  <img class = "media-object" src = "https://tutorialspoint.com/sql/images/sql-mini-logo.jpg" alt = "SQL">
               </a>
               <div class = "media-body">
                  <h4 class = "media-heading">Media heading</h4>
                  This is some sample text. This is some sample text.
                  This is some sample text. This is some sample text.
                  This is some sample text. This is some sample text.
                  This is some sample text. This is some sample text.
               </div>
            </div>
         </div>
      </div>
   </body>
</html>

更新于:2020 年 6 月 12 日

81 次浏览

开启您的职业生涯

完成课程即可获得认证

开始学习
广告
© . All rights reserved.