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

Usage of CSS visibility:visible;


The visibility property with value visible is used to make an element visible. You can try to implement the following code to implement the visible property − 

Example

<html>
   <head>
      <style>
         p {
            visibility: hidden;
         }
      </style>
   </head>
   <body>
      <p style = "visibility:visible;">
         This paragraph is visible.
      </p>
      <p>
         This paragraph won't be visible.
      </p>
   </body>
</html>