Bootstrap 4 .d-block class



Use the .d-block class in Bootstrap to create block element.

The d-block class is set as shown in the below code snippet −

<span class="d-block bg-primary">   block </span>

You can try to run the following code to implement the d-block 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>Creating Blocks</h2>     <p>Resize the browser to check the effect.</p>     <span class="d-block bg-primary">       block     </span>     <span class="d-sm-block bg-primary">       block on small screen     </span>    </div>  </body> </html>
Updated on: 2020-06-18T07:50:38+05:30

717 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements