是否存在CSS选择器仅在使用飞碟将html转换为pdf时才有效,并且在打开此html时不起作用? 我需要这样的东西
@page OnlyForFlyingSaucer {
body {
font-size: 16px;
}
}
谢谢!
答案 0 :(得分:1)
使用飞碟生成PDF被视为" print"媒体,请参阅CSS 2.1 specification section on media types。
语法为:
@media print {
body {
font-size: 16px;
}
}