是否可以使用CSS媒体查询隐藏输入框,但在打印时显示其值?

时间:2011-04-27 17:31:01

标签: html css media-queries

是否可以使用CSS媒体查询隐藏输入框,但在打印时显示其值?

<input type="text" value="Print this value but not the input box."/>

1 个答案:

答案 0 :(得分:2)

尝试为输入框提供透明背景和边框:

@media print {
    input[type="text"] {
        display: inline;
        color: #000;
        background: transparent;
        border: 0;
    }
}