Create an inline flexbox container in Bootstrap 4



To create an inline flexbox container, you need to work with d-inline-flex class in Bootstrap 4 −

Use the d-inline-flex class −

<div class="d-inline-flex p-4 bg-primary">

And then set the flex items inside it as in the following code snippet −

<div class="d-inline-flex p-4 bg-primary">     <div class="p-2 bg-info">One</div>   <div class="p-2 bg-danger">Two</div>   <div class="p-2 bg-info">Three</div> </div>

You can try to run the following code to implement the .d-inline 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">    <h2>Understanding Inline Flex</h2>    <div class="d-inline-flex p-4 bg-primary">        <div class="p-2 bg-info">One</div>      <div class="p-2 bg-danger">Two</div>      <div class="p-2 bg-info">Three</div>      <div class="p-2 bg-danger">Four</div>      <div class="p-2 bg-warning">Five</div>     </div>  </div> </body> </html>
Updated on: 2020-06-18T08:43:16+05:30

386 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements