Bootstrap Make an Element Invisible




Bootstrap Make an Element Invisible

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href="css/bootstrap.min.css">
      <script src="scripts/jquery.min.js"></script>
      <script src="js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class="container">
         <h2>Cricket Boards</h2>
         <p>The <abbr title = "International Cricket Council">ICC</abbr> governs cricket boards.</p>
         <p class="invisible">BCCI is also governed by ICC</p>
      </div>
   </body>
</html>

Output