在HTML中,<style> 元素的 media 属性用于指定样式表适用的媒体类型。媒体类型是指文档所显示的设备或媒体的特定类型,例如屏幕、打印机、视听设备等。通过设置 media 属性,可以让样式表在特定的媒体类型下生效。

以下是一个示例:
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Media Attribute Example</title>
  <style media="screen">
    body {
      background-color: lightblue;
      color: darkblue;
    }
  </style>
  <style media="print">
    body {
      background-color: white;
      color: black;
    }
  </style>
</head>
<body>
  <h1>Hello, World!</h1>
  <p>This is an example of the media attribute in HTML.</p>
</body>
</html>

在上面的例子中,有两个 <style> 元素,分别指定了在 screen(屏幕)和 print(打印)媒体类型下的样式。在屏幕上,背景色为淡蓝色,文字颜色为深蓝色;而在打印时,背景色为白色,文字颜色为黑色。这样可以确保在不同的媒体类型下,页面以不同的样式呈现。


转载请注明出处:http://www.zyzy.cn/article/detail/3952/HTML