主頁
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>