我正在研究一个项目,并得到两种类型的媒体查询
<style type="text/css" media="print">
div.page {
page-break-after: always !important;
page-break-inside: avoid !important;
}
</style>
<style media="screen,print">
.customTdWidth {
width: 35% !important;
font-weight: bold;
}
.tdValue {
width: 65%;
border-bottom: 1px dotted black !important;
}
</style>
媒体查询中的“屏幕”和“印刷”有什么区别?