W3cubDocs

/DOM

HTMLStyleElement.media

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

Syntax

medium = style.media
style.media = medium

Parameters

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

Example

<!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

© 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