如何使用CSS在文档语言中指定目标媒体
要指定目标媒体,请使用media属性-
示例
<style><!--
<!doctype html public "-//w3c//dtd html 4.0//en">
<html>
<head>
<title>link to a target medium</title>
<link rel="stylesheet" type="text/css" media="print, handheld" href="foo.css">
</head>
<body>
<p>the body...
</body>
</html>
-->
</style>
以上是 如何使用CSS在文档语言中指定目标媒体 的全部内容, 来源链接: utcz.com/z/322390.html