【发布时间】:2011-08-14 01:38:21
【问题描述】:
是否可以使用 CSS 媒体查询来隐藏输入框但在打印时显示其值?
<input type="text" value="Print this value but not the input box."/>
【问题讨论】:
标签: html css media-queries
是否可以使用 CSS 媒体查询来隐藏输入框但在打印时显示其值?
<input type="text" value="Print this value but not the input box."/>
【问题讨论】:
标签: html css media-queries
尝试为输入框设置透明背景和边框:
@media print {
input[type="text"] {
display: inline;
color: #000;
background: transparent;
border: 0;
}
}
【讨论】: