返回列表 发帖

Bootstrap 4 多媒体对象 定位多媒体图片位置

我们可以使用 align-self-* 相关类来设置多媒体对象的图片显示位置:

实例:

<!DOCTYPE html>
<html>
<head>
  <title>Bootstrap4 实例</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="external nofollow" target="_blank"  rel="external nofollow" target="_blank"  rel="external nofollow" target="_blank" >
  <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js" rel="external nofollow"  rel="external nofollow"  rel="external nofollow" ></script>
  <script src="https://cdn.bootcss.com/popper.js/1.12.5/umd/popper.min.js" rel="external nofollow"  rel="external nofollow"  rel="external nofollow" ></script>
  <script src="https://cdn.bootcss.com/bootstrap/4.1.0/js/bootstrap.min.js" rel="external nofollow"  rel="external nofollow"  rel="external nofollow" ></script>
</head>
<body>
<div class="container mt-3">
  <h2>多媒体对象</h2>
  <p>我们可以使用 align-self-* 相关类来设置多媒体对象的图片显示位置:</p><br>
  <!-- 头部 -->
  <div class="media">
    <img src="https://www.w3cschool.cn/attachments/cover/cover_bootstrap4.jpg" class="align-self-start mr-3" style="width:60px">
    <div class="media-body">
      <h4>头部 -- bootstrap4教程</h4>
      <p>Bootstrap4 目前是 Bootstrap 的最新版本
      <p>Bootstrap4 目前是 Bootstrap 的最新版本
      <p>Bootstrap4 目前是 Bootstrap 的最新版本
    </div>
  </div>
  <!-- 居中 -->
  <div class="media mt-3">
    <img src="https://www.w3cschool.cn/attachments/cover/cover_bootstrap4.jpg" class="align-self-center mr-3" style="width:60px">
    <div class="media-body">
      <h4>居中 -- bootstrap4教程</h4>
      <p>Bootstrap4 目前是 Bootstrap 的最新版本
      <p>Bootstrap4 目前是 Bootstrap 的最新版本
      <p>Bootstrap4 目前是 Bootstrap 的最新版本
    </div>
   </div>
  <!-- 底部 -->
  <div class="media mt-3">
    <img src="https://www.w3cschool.cn/attachments/cover/cover_bootstrap4.jpg" class="align-self-end mr-3" style="width:60px">
    <div class="media-body">
      <h4>底部 -- bootstrap4教程</h4>
      <p>Bootstrap4 目前是 Bootstrap 的最新版本
      <p>Bootstrap4 目前是 Bootstrap 的最新版本
      <p>Bootstrap4 目前是 Bootstrap 的最新版本
    </div>
  </div>
</div>
</body>
</html>
尝试一下

返回列表