What is the picture element in HTML5?
Use the HTML5
tag; 4. Commonly used for image cropping or modern formats with priority loading; 5. Improve performance, responsiveness and future compatibility, but only when necessary, simple resolution switching should give priority to
's srcset attribute.

The <picture></picture> element in HTML5 is a container used to define multiple sources for an image, allowing the browser to choose the most appropriate image based on device characteristics like screen size, resolution, or pixel density. It's especially useful for responsive web design, where different images may be needed for different devices or viewport sizes.

Think of it as a "wrapper" that holds several <source></source> elements, each pointing to a different image file with specific conditions, followed by a fallback <img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/175493256698363.jpeg" class="lazy" alt="What is the picture element in HTML5?" > element that displays if none of the sources match or if the browser doesn't support the <picture></picture> element.
How the <picture></picture> element works
The <picture></picture> element uses the <source></source> tag to define alternative image files. The browser evaluates the sources in order and picks the first one that matches the given criteria. Common criteria include:

-
media: Applies a media query (eg, max-width, min-resolution) -
srcset: Specifies the image URL(s), optionally with describes for resolution (eg, 2x) -
type: Filters by image format (eg, WebP, AVIF)
If no <source></source> matches, the browser falls back to the <img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/175493256755831.jpeg" class="lazy" alt="What is the picture element in HTML5?" > element inside the <picture></picture> tag.
Example use cases
1. Art direction (different crops for different screen sizes):

<picture> <source media="(max-width: 799px)" srcset="small.jpg"> <source media="(min-width: 800px)" srcset="large.jpg"> <img src="/static/imghw/default1.png" data-src="fallback.jpg" class="lazy" alt="A responsive image"> </picture>
This shows a cropped version on small screens and a wider version on larger screens.
2. Format optimization (serving modern formats):
<picture> <source type="image/webp" srcset="photo.webp"> <source type="image/avif" srcset="photo.avif"> <img src="/static/imghw/default1.png" data-src="photo.jpg" class="lazy" alt="A photo in the best available format"> </picture>
Browsers that support WebP or AVIF will use those (smaller, more efficient files), while others fall back to JPEG.
Key benefits
- Performance : Serve smaller, optimized images to reduce load time.
- Responsive design : Adapt visuals to different devices and screen sizes.
- Future-proofing : Support new image formats without breaking older browsers.
Note: The <picture></picture> element is not for general images. If you just need resolution switching (eg, 1x vs 2x), srcset on the <img alt="What is the picture element in HTML5?" > tag alone is often enough.
Basically, use <picture></picture> when you need art direction or format switching — not just for resolution changes.
The above is the detailed content of What is the picture element in HTML5?. For more information, please follow other related articles on the PHP Chinese website!
Hot AI Tools
Undress AI Tool
Undress images for free
AI Clothes Remover
Online AI tool for removing clothes from photos.
Undresser.AI Undress
AI-powered app for creating realistic nude photos
ArtGPT
AI image generator for creative art from text prompts.
Stock Market GPT
AI powered investment research for smarter decisions
Hot Article
Popular tool
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
Hot Topics
20521
7
13634
4
How to quickly create a virtual human explanation video with Synthesia_Synthesia virtual human video production guide [Quick]
Dec 18, 2025 pm 06:54 PM
Synthesia can quickly generate high-quality virtual human explanation videos: 1. Select a virtual human and customize the voice intonation; 2. Paste the script to enable automatic lip synchronization; 3. Add dynamic backgrounds and graphic and text layers; 4. Generate multi-language versions in batches with one click; 5. Export MP4 or embed HTML5 code for publication.
What to do if the IE browser web page loads slowly? IE browser performance optimization
Jan 15, 2026 pm 02:21 PM
Optimization methods for slow loading of IE web pages include: 1. Disable non-essential add-ons; 2. Reset IE settings; 3. Adjust connection and advanced parameters; 4. Clean system temporary files and DNS cache; 5. Turn off hardware acceleration and set to standard document mode.
Quark Browser video cannot be played. Steps to troubleshoot Quark Browser playback problems.
Jan 22, 2026 am 09:30 AM
Solutions to abnormal video playback in Quark browser include: 1. Check network connection and access permissions; 2. Clear cache and website data; 3. Enable JavaScript and H5 playback support; 4. Switch to desktop version of UA; 5. Turn off hardware acceleration and reset media services.
3699 mini-games online play entrance, latest decompression mini-games updated daily
Jan 13, 2026 pm 02:12 PM
The entrance address for online play of 3699 mini games is https://www.3699.com. The platform is based on HTML5 technology and runs without plug-ins. It supports multi-terminal adaptation, CDN acceleration, preloading optimization, and decompressed games are updated daily, classified according to emotional dimensions, and taking into account both interaction friendliness and privacy and security protection.
What to do if Microsoft Edge video clarity is blurred Microsoft Edge image quality adjustment
Jan 04, 2026 am 10:24 AM
Edge video blur can be enabled by enabling VSR, using the enhancement button, configuring NVIDIARTX overclocking, turning off hardware acceleration or checking DRM restrictions. The corresponding solution needs to be selected based on the graphics card model, browser version and video encryption.
What should you pay attention to when collecting Shenma search on the mobile terminal? Tips for adapting to the mobile terminal [Instructions]
Jan 04, 2026 am 11:00 AM
In order to improve the inclusion effect of Shenma Search mobile terminal, it is necessary to adopt independent adaptation (self-jumping), add mobile-agentMeta statement, submit corresponding Sitemap for PC and mobile pages, ensure that the basic quality of mobile pages meets the standards, and verify the effective status of adaptation.
How to set full-screen mode in uc browser_Steps to set full-screen mode in uc browser [Compilation]
Jan 14, 2026 pm 09:27 PM
There are five ways to solve the problem that UC Browser cannot go full screen: 1. Turn on the full screen switch through the toolbox; 2. Add UC smart components in the settings; 3. Switch UA to the computer version and refresh the page; 4. Use the F11 key or double-click the video and other system-level operations; 5. Clear the web page and GPU cache and then restart.
How Sublime generates project structure with one click_Sublime manages project folders [dry information]
Feb 05, 2026 pm 10:39 PM
SublimeText does not have a native one-click generation project structure function and needs to rely on plug-ins or external scripts: ProjectManager is used to save/switch project directories, SideBarEnhancements supports the sidebar to quickly create files and folders, ShellCommand or a custom build_system can call scripts to generate the structure, but it is recommended to use professional scaffolding (such as npminit, cookiecutter) to generate it in the terminal and then open it with Sublime.





