VOOZH about

URL: https://www.geeksforgeeks.org/css/bulma-other-visibility-helpers/

⇱ Bulma Other Visibility Helpers - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Bulma Other Visibility Helpers

Last Updated : 23 Jul, 2025

Bulma is a free and open-source CSS framework based on flexbox. It comes with pre-styled components so we don't have to write everything from the ground up and hence cutting the development time of websites. In this article, we will be using Bulma visibility helpers other than show and hide helpers.

Bulma Other Visibility Helpers Classes:

  • is-invisible: This class adds visibility hidden to the HTML element on which it is applied.
  • is-hidden: This class is used to hide the element from the frontend as well as screen readers.
  • is-sr-only: This class is used to hide the element from the frontend but doesn't hide the element from screen readers.

Syntax:

<element class="Other-Visibility-Helpers-Classes">
 ...
</element>

Example 1: The below example shows how to use the is-invisible class discussed above. Here the second button has been hidden using visibility: hidden property of CSS.

Output:

👁 Bulma Other Visibility Helpers
Bulma Other Visibility Helpers

Example 2: The below example shows how to use the is-hidden class discussed above. Here the second button has been hidden from the user as well as screen readers.

Output:

👁 Image

Example 3:  The example below illustrates the use of the is-sr-only modifier. Here the second button is hidden from the frontend but screen readers can read that button.

Output:

👁 Bulma Other Visibility Helpers
Bulma Other Visibility Helpers

Reference: https://bulma.io/documentation/helpers/visibility-helpers/#other-visibility-helpers

Comment
Article Tags: