“print”メディア・タイプについて サンプルコード # “print”メディア・タイプについて “print”メディア・タイプはプリンタ・デバイスを条件とするためのメディア・タイプです。 紙に出力するプリンタ・デバイスや印刷結果を再現するデバイス(例えば、ブラウザの印刷プレビュー)などを想定しています。 # サンプルコード @media print { p.sample { background-color: #00a497; /*■*/ text-decoration: underline dotted; } } @media not print { p.sample { background-color: #e198b4; /*■*/ text-decoration: underline wavy; } } <p class="sample"> 猫は、上のかぎり黒くて、ことはみな白き。 </p> 猫は、上のかぎり黒くて、ことはみな白き。