Home  >  Article  >  Web Front-end  >  How to use html details tag

How to use html details tag

藏色散人
藏色散人Original
2019-05-26 15:39:453976browse

html The details tag is used to describe the details of a document or a certain part of the document. The

tag is a new tag in HTML5. Currently, only Chrome supports the
tag.

How to use html details tag

#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

tag.

Note: The

tag is a new tag in HTML 5.

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:

How to use html details tag

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to use html del tagNext article:How to use html del tag