Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

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>