PHP前端开发

在HTML5中为一个<figure>元素添加标题

百变鹏仔 3个月前 (09-21) #HTML
文章标签 中为

要向 元素添加标题,请使用 标签。您可以尝试运行以下代码以在 HTML5 中包含 元素的标题 -

<!DOCTYPE html><html>   <head>      <title>HTML figcaption Tag</title>   </head>   <body>      <figure><img  src = "https://www.tutorialspoint.com/videotutorials/images/tutorial_library_home.jpg"/ alt="在HTML5中为一个&lt;figure&gt;元素添加标题" >         <figcaption>Tutorials Point Library of Tutorials</figcaption>      </figure>   </body></html>