속성 | 값 | 설명 |
---|---|---|
열기 | 열기 | 대화 상자를 열고 사용자가 대화 상자와 상호 작용할 수 있습니다. |
예시
다음 코드를 실행하여
<!Doctype html> <html> <head> <title>HTML dialog Tag</title> </head> <body> <h3>Tutorialspoint</h3> <p>We provide tutorials, quizzes, learning videos, etc.</p> <dialog open>Tutorials are free for all</dialog> </body> </html>