-
Q: 下列HTML代码是否正确?
<figure> <img src="myimage.jpg" alt="My image"> <figcaption> <p>This is my self portrait.</p> </figcaption> </figure>
A: 正确
<figure>
标签规定独立的流内容(图像、图表、照片、代码等等)。figure
元素的内容应该与主内容相关,但如果被删除,则不应对文档流产生影响。使用<figcaption>
元素为figure
添加标题(caption)。