

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
<!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>
- Related Questions & Answers
- d-*-block class in Bootstrap 4
- Bootstrap 4 .d-*-flex class
- Bootstrap 4 .d-flex class implementation
- Bootstrap 4 .d-inline-flex class
- Bootstrap class center-block
- Bootstrap .btn-block class
- Create a block element with Bootstrap 4
- Bootstrap 4 .border-success class
- Bootstrap 4 .border-secondary class
- Bootstrap 4 .border-warning class
- Bootstrap 4 .border-danger class
- Bootstrap 4 .border-white class
- Bootstrap 4 .card-header class
- Bootstrap 4 .float-right class
- Bootstrap 4 .card-link class
Advertisements