숨겨진 HTML5에서 속성을 사용하여 HTML5에서 숨겨진 단락, 즉 더 이상 관련이 없는 요소를 생성합니다.
예시
다음 코드를 실행하여 숨겨진 HTML5의 속성 -
<!DOCTYPE html> <html> <body> <h2>Heading</h2> <p>This is a demo paragraph and visible.</p> <p hidden>This is a demo paragraph and hidden.</p> </body> </html>