HTML 열기 속성은 세부정보 를 정의합니다. HTML 요소 콘텐츠는 HTML 문서에서 볼 수(열려) 있어야 합니다.
구문
다음은 구문입니다 -
<details open></details>
HTML open Attribute의 예를 살펴보겠습니다 -
예시
<!DOCTYPE html>
<html>
<style>
body {
color: #000;
height: 100vh;
background-color: #8BC6EC;
background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
text-align: center;
}
</style>
<body>
<h1>HTML low Attribute Demo</h1>
<details open>
<summary>Hi! I'm a summary element</summary>
<p>Hi! I'm a paragraph element with some dummy text</p>
</details>
</body>
</html> 출력
