Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

จะระบุได้อย่างไรว่ารายละเอียดควรปรากฏแก่ผู้ใช้ใน HTML?


ใช้ เปิด แอตทริบิวต์เพื่อระบุว่ารายละเอียดควรปรากฏแก่ผู้ใช้ คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน 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>