Computer >> Computer tutorials >  >> Programming >> CSS

Usage of CSS visibility:hidden;


The visibility property with value hidden is used to hide an element. You can try to implement the following code to implement the hidden value

Example

<html>
   <head>
   </head>
   <body>
      <p>This paragraph should be visible in normal way.</p>
      <p style = "visibility:hidden;">
         This paragraph should not be visible.
      </p>
   </body>
</html>