HTMLStyleElement: media 屬性
HTMLStyleElement.media 屬性指定了樣式資訊的預期目標媒體。
值
一個描述單個媒體或逗號分隔列表的字串。
示例
假設 <head> 包含以下內容
html
<style id="inline-style" media="screen, print">
p {
color: blue;
}
</style>
那麼
js
const style = document.getElementById("inline-style");
console.log(style.media); // 'screen, print'
規範
| 規範 |
|---|
| HTML # dom-style-media |
瀏覽器相容性
載入中…