以下是一个示例:
<!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