在 Bootstrap 4 中将元素与父级的基线对齐


在 Bootstrap 4 中使用 align-baseline 类将元素与父元素的基线对齐。

设置如下代码片段中的 align-baselinec 类−

<span class="align-baseline">

现在,在内部添加内容 −

<span class="align-baseline">  
  Demo Baseline
</span>

你可以尝试运行以下代码,将元素与父元素的基线对齐 −

示例

在线演示

<!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>
    </div>
  </body>
</html>

更新时间:2020 年 6 月 18 日

117 次浏览

开启你的职业生涯

完成课程获取认证

开始
广告