HTML media attribute
The HTML media attribute is employed to specify the media or device the coupled document is optimized for. This attribute specifies that the target URL is designed for special devices like iPhone, speech, or print media.
This attribute can accept several values.
Applicable:
Example: HTML <a> media attribute
html
< html > < body > < h1 >GeeksForGeeks</ h1 > < h2 > HTML media Attribute </ h2 > media = "print and (resolution:300dpi)" > Click to open in the same tab </ a > < br > target = "_blank" media = "print and (resolution:300dpi)" > Click to open in a different tab </ a > </ body > </ html > |
Output:
Example: HTML <source> media attribute
html
<!DOCTYPE html> < html > < head > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > </ head > < body > < picture > < source media = "(min-width: 600px)" srcset = < source media = "(min-width: 400px)" srcset = < img src = style = "width:auto;" > </ picture > </ body > </ html > |
Output: Change the browser size.
Supported Browsers: The browsers supported by HTML media attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Apple Safari
- Opera
Please Login to comment...