在 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>
广告