Open In App

Visibility of elements in bootstrap with Examples

There are some situations where it is needed to hide some content on a webpage without affecting the layout of the page. Bootstrap uses the CSS visibility property and provide two classes visible and invisible to control the visibility of an element on a web page.
These classes do not affect the layout i.e. invisible elements will still take up space in the layout. Content will be hidden both visually and for screen readers.
invisible class 
This class of bootstrap is used to hide an element from the page. In the below program the heading h2 “Bootstrap Tutorial” is made hidden using this class. This class basically uses the visibility property of CSS and set it’s value to hidden. Even though the heading Bootstrap Tutorial is invisible, it’ll still take up space in the layout.
 




<!DOCTYPE html>
<html>
<head>
  <title>GeeksForGeeks</title>
   
  <!-- Import Jquery -->
  <script src=
  </script>
   
  <!-- Import Bootstrap CSS and JS files -->
  <link rel="stylesheet" 
  <script src=
  </script>
</head>
 
<body>
    <div class="container">
      <div class="jumbotron">
      
        <!-- Making invisible -->
        <h1 class="invisible">Bootstrap Tutorial</h1>  
         
         
<p>
            Bootstrap is the most popular HTML, CSS, and
            JS framework for developing responsive,
            mobile-first projects on the web.
        </p>
 
      </div>
       
       
<p>This is some text.</p>
       
       
<p>This is another text.</p>
       
    </div>
</body>
</html>

Output: 
 



visible class 
This class of bootstrap is used to unhide an hidden element from the page. In the below program the heading h2 “Bootstrap Tutorial” is made visible using this class. This class basically uses the visibility property of CSS and set it’s value to visible
The visible class has no effect in the example below because elements are visible by default, but this class can be helpful when a previously invisible element is to be made visible. programmatically. 
 






<!DOCTYPE html>
<html>
<head>
  <title>GeeksForGeeks</title>
   
  <!-- Import Jquery -->
  <script src=
  </script>
   
  <!-- Import Bootstrap CSS and JS -->
  <link rel="stylesheet"
  <script src=
  </script>
</head>
 
<body>
    <div class="container">
      <div class="jumbotron">
      
        <!-- Making visible -->
        <h1 class="visible">GeeksForGeeks</h1>     
      
         
<p>
            Bootstrap is the most popular HTML, CSS,
            and JS framework for developing responsive,
            mobile-first projects on the web.
        </p>
 
         
      </div>
       
       
<p>This is some text.</p>
       
       
<p>This is another text.</p>
     
       
    </div>
</body>
</html>

Output: 
 

Important Points
 

Reference: https://getbootstrap.com/docs/4.1/utilities/visibility/
 


Article Tags :