A4サイズでhtmlページを印刷する必要があります。また、CSS、htmlと一緒に内容の本文を印刷し、メニューリスト、ヘッダー、フッター、ページの右側のメニューを無視したいリスト。A4ページにhtmlを印刷するとメディアが動作しない
これから始めて、単純なdivとclass noprintを紹介し、これを@mediaプリントに追加しましたが、その機能が動作していないようです。 noprintクラスは@mediaプリントの外で動作するので、正しいことが分かります。
また、私の要件は、標準のCtrl + Pのキーボードオプション
<style type="text/css">
.standardStyle {
display:block;
width:200px;
height:150px;
padding:10px;
background-color:green;
margin:5px;
}
@media print{
.noprint{ color:red;}
}
</style>
</head>
<body>
<div class="noprint standardStyle">
this is test line....
</div>
<div class="print standardStyle">
this is test line....
</div>
<div class="print standardStyle">
this is test line....
</div>
ありがとうございました.... – toxic