display-property.md 830 Bytes
Newer Older
1
2
3
4
5
6
7
8
---
layout: docs
title: Display property
group: utilities
---

Use `.d-block`, `.d-inline`, or `.d-inline-block` to simply set an element's [`display` property](https://developer.mozilla.org/en-US/docs/Web/CSS/display) to `block`, `inline`, or `inline-block` (respectively).

9
To make an element `display: none`, use our [responsive utilities]({{ site.baseurl }}/layout/responsive-utilities/) instead.
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

{% example html %}
<div class="d-inline bg-success">Inline</div>
<div class="d-inline bg-success">Inline</div>
{% endexample %}

{% example html %}
<span class="d-block bg-primary">Block</span>
{% endexample %}

{% example html %}
<div class="d-inline-block bg-warning">
  <h3>inline-block</h3>
  Boot that strap!
</div>
<div class="d-inline-block bg-warning">
  <h3>inline-block</h3>
  Strap that boot!
</div>
{% endexample %}