HTML5 <embed> 标签、HTML5 <figcaption> 标签
HTML5 <embed>
标签用于嵌入媒体内容,如插件,对于非HTML5兼容的浏览器,可以提供替代内容。
例子:
<embed src="movie.swf" type="application/x-shockwave-flash">
HTML5 <figcaption>
标签用于为 <figure>
元素提供标题(caption),通常用于图片或其他媒体的说明。
例子:
<figure>
<img src="path/to/image.jpg" alt="描述文字">
<figcaption>这是图片的标题</figcaption>
</figure>
评论已关闭