HTMLStyleElement.media

The HTMLSyleElement.media property specifies the intended destination medium for style information.

Syntax

JavaScript
<var>medium</var> = style.media
style.media = <var>medium</var>

Parameters

  • medium is a string describing a single medium or a comma-separated list.

Example

HTML
<!DOCTYPE html>
<head>

<link id="linkScreenStyle" rel="stylesheet" href="document.css" type="text/css" media="screen" />

<style id="screenStyle" rel="stylesheet" type="text/css" media="screen">
p {color:blue;}
</style>

<script>
alert(document.getElementById('screenStyle').media); // 'screen'
alert(document.getElementById('linkScreenStyle').media); // 'screen'
</script>

</head>
<body>
</body>
</html>

Notes

The default value for media is "screen."

Specifications

Specification Status Comment
WHATWG HTML Living Standard
The definition of 'HTMLStyleElement' in that specification.
Living Standard  
HTML5.1
The definition of 'HTMLStyleElement' in that specification.
Working Draft  
HTML5
The definition of 'HTMLStyleElement' in that specification.
Recommendation  
Document Object Model (DOM) Level 2 HTML Specification
The definition of 'HTMLStyleElement' in that specification.
Recommendation  
Document Object Model (DOM) Level 1 Specification
The definition of 'HTMLStyleElement' in that specification.
Recommendation Initial definition.
 

 

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/htmlstyleelement/media

API HTML DOM HTMLStyleElement NeedsCompatTable NeedsMarkupWork Property Reference Référence