H5新增语义化标签figure
3.figure:用作文档中插入图片文字说明用figcaption
与<div>
<img src=""/>
<p></p>
</div>
相类似
例:
<!DOCTYPE HTML> <html> <body> <figure> <img src="插入图片" width="350" height="234" /> <figcaption>文字说明</figcaption> </figure> </body> </html>
3.figure:用作文档中插入图片文字说明用figcaption
与<div>
<img src=""/>
<p></p>
</div>
相类似
例:
<!DOCTYPE HTML> <html> <body> <figure> <img src="插入图片" width="350" height="234" /> <figcaption>文字说明</figcaption> </figure> </body> </html>