PHP前端开发

如何使用 CSS 指定文档语言内的目标媒体

百变鹏仔 3个月前 (09-20) #CSS
文章标签 如何使用

要指定目标媒体,请使用媒体属性 -

示例

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