HTML <source> with media Attribute
You are Here:
HTML <source> with media Attribute
The media
attribute specifies the size of the screen.
Note: The media
attribute should be used only in a <picture> element.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<picture>
<source media="(min-width: 660px)" srcset="devices.jpg">
<source media="(min-width: 475px)" srcset="macbook.jpg">
<source media="(min-width: 385px)" srcset="ipad.jpg">
<img src="iphone.jpg" alt="apple iphone" style="width:auto;">
</picture>
</body>
</html>
Attribute Value
Value | Explanation |
---|---|
media_query | Specifies the size of the screen. |
Reminder
Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in HTML.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.