@media 규칙

H·2023년 8월 14일

미디어 종류

종류속성
aural음성 합성 장치
braille점자 표시 장치
handheld손으로 들고 다니면서 볼 수 있는 작은 스크린에 대응하는 용도
print인쇄 용도
projection프로젝터 표현 용도
screen컴퓨터 스크린을 위한용도
tv음성과 영상이 동시 출력되는 TV와 같은 장치
embossed페이지에 인쇄된 점자 표지 장치

예) 스타일시트에 직접

<style>
    @media screen {
          .content {
             background-color:red;
          }
    }
    
    @media print {
          .content {
             background-color:yellow;
          }
    }
</style>

예) 링크

<link rel="stylesheet" href=content_pc.css" media="screen"/>
<link rel="stylesheet" href=content_print.css" media="print"/>

0개의 댓글