열기 사용 세부 정보가 사용자에게 표시되어야 함을 지정하는 속성입니다. 다음 코드를 실행하여 novalidate를 구현할 수 있습니다. 속성 -
예시
<!DOCTYPE html> <html> <head> <title>HTML open attribute</title> </head> <body> <details open> <summary>Some More Information</summary> <p>Providing more info about the details here.</p> </details> </body> </html>