Home > Article > Web Front-end > How to use html details tag
html The details tag is used to describe the details of a document or a certain part of the document. The
#html How to use the details tag?
Function: Used to describe the details of a document or a certain part of a document.
Note:
Currently only Chrome supports the
Note: The
html details tag example
<!DOCTYPE HTML> <html> <body> <details> <summary>Copyright 2018.</summary> <p>All pages and graphics on this web site are the property of php中文网.</p> </details> </body> </html>
Effect:
The above is the detailed content of How to use html details tag. For more information, please follow other related articles on the PHP Chinese website!