是否可以使用CSS媒体查询隐藏输入框,但在打印时显示其值?
<input type="text" value="Print this value but not the input box."/>
答案 0 :(得分:2)
尝试为输入框提供透明背景和边框:
@media print {
input[type="text"] {
display: inline;
color: #000;
background: transparent;
border: 0;
}
}