首页
HTML
HTML 图片
图片元素
试用:HTML 图片源
运行 ❯
获取您自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <h2>The picture Element</h2> <picture> <source srcset="img_avatar.png"> <source srcset="img_girl.jpg"> <img src="img_beatles.gif" alt="Beatles" style="width:auto;"> </picture> <p>The picture element can be used when the image format is not supported by all devices.</p> <p>The device will use the first image format it supports, and ignore the rest of the images.</p> </body> </html>