0
是否可以使用CSS媒體查詢來隱藏輸入框,但在打印時顯示它們的值?是否可以使用CSS媒體查詢來隱藏輸入框,但在打印時顯示它們的值?
<input type="text" value="Print this value but not the input box."/>
是否可以使用CSS媒體查詢來隱藏輸入框,但在打印時顯示它們的值?是否可以使用CSS媒體查詢來隱藏輸入框,但在打印時顯示它們的值?
<input type="text" value="Print this value but not the input box."/>
先給輸入框透明背景和邊框:
@media print {
input[type="text"] {
display: inline;
color: #000;
background: transparent;
border: 0;
}
}
感謝,偉大工程! – payling 2011-04-27 17:53:32