The HTMLStyleElement.media
property specifies the intended destination medium for style information.
medium = style.media style.media = medium
medium
is a string describing a single medium or a comma-separated list.<!doctype html> <html> <head> <link id="LinkedStyle" rel="stylesheet" href="document.css" type="text/css" media="screen" /> <style id="InlineStyle" rel="stylesheet" type="text/css" media="screen, print"> p { color: blue; } </style> </head> <body> <script> alert('LinkedStyle: ' + document.getElementById('LinkedStyle').media); // 'screen' alert('InlineStyle: ' + document.getElementById('InlineStyle').media); // 'screen, print' </script> </body> </html>
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'HTMLStyleElement' in that specification. | Living Standard | |
HTML 5.1 The definition of 'HTMLStyleElement' in that specification. | Recommendation | |
HTML5 The definition of 'HTMLStyleElement' in that specification. | Recommendation | |
Document Object Model (DOM) Level 2 HTML Specification The definition of 'HTMLStyleElement' in that specification. | Obsolete | |
Document Object Model (DOM) Level 1 Specification The definition of 'HTMLStyleElement' in that specification. | Obsolete | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | 12 | Yes | Yes | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLStyleElement/media