Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 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; } }