<div class="display-inline"></div>
<div class="display-inline-block"></div>
<div class="display-block"></div>
+<div class="display-table"></div>
```
By default, we have just added the most used display classes. but as you would know, there are many other display classes as specified by MDN [here](https://developer.mozilla.org/en-US/docs/Web/CSS/display). If you need some of those classes, then you can add them easily through Sass variables with `$prototype-display`. Sass Reference [here](#sass-reference)
/// Map containing all the `display` classes
/// @type Map
$prototype-display: (
- none, inline, inline-block, block
+ none, inline, inline-block, block, table
) !default;
/// Display classes, by default coming through a map `$prototype-display`