在 Bootstrap 4 中對齊元素到行上最低的元素


在 Bootstrap 4 中使用 align-bottom 類來對齊元素到行上最低的元素。

將類設定為 −

<span class="align-bottom">

現在新增內容 −

<span class="align-bottom">
  Bottom Alignment
</span>

你可以嘗試執行以下程式碼,以在 Bootstrap 4 中對齊元素到行上最低的元素 −

示例

線上演示

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
  </head>
<body>

<div class="container">
  <h2>Example</h2>
  <p>This is demo text<p>
  <span class="align-baseline">Demo Baseline</span>
  <span class="align-top">Top Alignment</span>
  <span class="align-middle">Middle Alignment</span>
  <span class="align-bottom">Bottom Alignment</span>
</div>

</body>
</html>

更新於: 17-6-2020

180 瀏覽

開啟你的 職業

透過完成課程獲取證書

開始吧
廣告
© . All rights reserved.