Utility classes to control the display properties of an element
.d-blockdisplay: block;.d-inline-blockdisplay: inline-block;.d-inlinedisplay: inline;.d-flexdisplay: flex;.d-inline-flexdisplay: inline-flex;.d-tabledisplay: table;.d-table-rowdisplay: table-row;.d-table-celldisplay: table-cell;.d-nonedisplay: none;.d-unsetdisplay: unset;.d-block creates block level elements.
<div class="d-block">...</div>.d-inline-block creates inline elements which behave as blocks.
<div class="d-block">...</div>.d-inline creates inline elements.
<div class="d-block">...</div>.d-flex creates a top level flex element.
<div class="d-flex">...</div>Using d-table, d-table-row, d-table-cell it is possibl e to emulate a table built with <table>, <tr> and <td> respectively.
<div class="d-block">...</div>Using d-none. Hides the element from the browser but also removes it from the dom
lorem
<div class="d-none">...</div>