Display flex items vertically and reversed in Bootstrap 4


The flex-column-reverse is used to display reversed flex items with vertical orientation. Add the flex-column-reverse class as in the following code snippet −

<div class="d-flex flex-column-reverse">

After that, add flex items inside it −

<div class="d-flex flex-column-reverse">
  <div class="p-2 bg-secondary">Demo 1</div>
  <div class="p-2 bg-danger">Demo 2</div>
  <div class="p-2 bg-info">Demo 3</div>
</div>

You can try to run the following code to show flex items vertically and reversed −

Example

Live Demo

<!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 mt-3">
    <h2>Implementing Column Reverse</h2>
    <div class="d-flex flex-column-reverse">
      <div class="p-2 bg-secondary">Demo 1</div>  
      <div class="p-2 bg-danger">Demo 2</div>
      <div class="p-2 bg-info">Demo 3</div>
    </div>
  </div>

</body>
</html>

Updated on: 16-Jun-2020

67 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements