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.
我想知道是否可以使HTML FORM 输入控件不可见,同时保持其输入文本编辑功能处于活动状态。
为什么?因为设计师创造了一个图像,它应该被用作一种形式。图像使用了颜色渐变——在表单域的各处和内部。
您可以使用
input{ background:transparent; border:none; outline:none; }
JSF中。
保留输入(文本编辑)功能并将其隐藏。
您可以为文本字段尝试一些这样的样式:
input[type="text"] { background: transparent; border: 0; }
注意:透明度在 IE6 中默认不起作用。