Skip to content

[hidden]

Elements with the [hidden] attribute are hidden by default.

Basic Usage

Content with hidden attribute is not displayed.

live preview
editable html
<p>This content is visible</p>
<p hidden>This content is hidden</p>
<p>This content is also visible</p>