HTML | hidden Attribute
This attribute is used to define the visibility of elements. It contains a boolean value. If this attribute is used then browsers will not display elements that have the hidden attribute specified. The hidden attribute can be seen using some condition or JavaScript used to see the hidden content.
Syntax:
<element hidden>
Note: This attribute is new in HTML 5.
Example:
<!DOCTYPE html> <html> <head> <title>hidden attribute</title> <style> body { text-align:center; } h1 { color:green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>hidden attribute</h2> <!-- hidden paragraph --> <p hidden>A computer science portal for geeks</p> </body> </html> |
Output:

Supported Browsers: The browser supported by hidden attribute are listed below:
- Google Chrome 6.0
- Internet Explorer 11.0
- Firefox 4.0
- Opera 11.1
- Safari 5.1
Recommended Posts:
- HTML | DOM Input Hidden name Property
- HTML | DOM Input Hidden value Property
- HTML <input type="hidden">
- HTML | DOM Input Hidden Object
- HTML | DOM Input Hidden form Property
- HTML | DOM Input Hidden type Property
- HTML | min Attribute
- HTML | <li> value Attribute
- HTML | dir Attribute
- HTML | <a> rel Attribute
- HTML | <map> name Attribute
- HTML | low Attribute
- HTML | <img> alt Attribute
- HTML | for Attribute
- HTML | value Attribute
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



