15 September 2016

CSS - VISIBILITY

  • A property called visibility allows you to hide an element from view. You can use this property along with JavaScript to create very complex menu and very complex webpage layouts.
  • You may choose to use the visibility property to hide error messages that are only displayed if the user needs to see them, or to hide answers to a quiz until the user selects an option.
  • NOTE − Remember that the source code will still contain whatever is in the invisible paragraph, so you should not use this to hide sensitive information such as credit card details or passwords.
  • The visibility property can take the values listed in the table that follows.


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> 

 












No comments:

Post a Comment