Course Content
Bootstrap 5 Alerts
0/1
Progress Bars
0/1
Spinners
0/1
Pagination
0/1
List Groups
0/1
Bootstrap 5 Scrollspy
0/1
Bootstrap
About Lesson

Bootstrap5 Visibility

Bootstrap 5 provides visibility utility classes that allow you to control whether an element is visible or not, without affecting its layout. Unlike display: none;, which removes the element from the document flow, visibility classes only hide the element while keeping its space occupied.

Visibility Classes Overview

Bootstrap provides the following visibility classes:

  • visible → Makes an element visible (visibility: visible;)
  • invisible → Hides an element but retains its space (visibility: hidden;)

Example:

HTML
<div class="box visible">This is Visible</div>
<div class="box invisible">This is Invisible (but space is still occupied)</div>

Key Difference:

  • d-none completely removes an element from the page layout.
  • invisible just hides the element, but its space remains reserved in the layout.