Bootstrap 4 .flex-grow-0|1 class


Use the .flex-grow-0|1 class in Bootstrap to allow a singly lex item to take up rest of the space in the flex.

For example, the following takes rest of the space in the right −

The above is set by adding flex-grow class for the last flex-item −

<div class="d-flex mb-3">
  <div class="p-2 bg-danger">P</div>
  <div class="p-2 bg-info">Q</div>
  <div class="p-2 flex-grow-1 bg-secondary">R</div>
</div>

Let us see the following example to implement flex-grow-0|1 class −

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">
    <div class="d-flex mb-3">
      <div class="p-2 bg-danger">P</div>
      <div class="p-2 bg-info">Q</div>
      <div class="p-2 flex-grow-1 bg-secondary">R</div>
    </div>
    <div class="d-flex mb-3">
      <div class="p-2 bg-success">P</div>
      <div class="p-2 flex-grow-1 bg-primary">Q</div>
      <div class="p-2 bg-info">R</div>
    </div>
  </div>

</body>
</html>

Updated on: 17-Jun-2020

178 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements