Align an element with the bottom of the parent element's font in Bootstrap 4


Use align-text-bottom class to align an element with the bottom of the parent element's font.

You need to set the align-text-bottom class as shown below −

<span class="align-text-bottom">
  Bottom Text
</span>

You can try to run the following code to implement the align-text-bottom class in Bootstrap 4 −

Example

Live Demo

<!DOCTYPE html>
<html>
<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-text-top">Top Text</span>
  <span class="align-text-bottom">Bottom Text</span>
</div>

</body>
</html>

Updated on: 15-Jun-2020

829 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements