如何隐藏文本区域但保持插入符号可见?
我想知道是否可以在将文本区域的不透明度降低到零的同时保持插入符号可见。 实际上,我想做的是使文本字符串不可见,同时具有可见的插入符号,该插入符号正是文本可见时的位置。
I wonder if I can keep a caret visible while reducing a textarea's opacity to zero.
Actually, what I want to do is to render text strings invisible while having a visible caret that's exactly where it would be if the text was visible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,可以在文本区域上使用
color
属性。将其设置为透明
将使文本透明。另外,如果您不希望选择文本,则应将
user-select
属性设置为none
。Yes, it's possible using the
color
property on the textarea. Setting it totransparent
will make the text transparent.Also, if you don't want the text to be selected you should set the
user-select
property tonone
.您可以使用这样的伪元素:
对于这样的 HTML:
检查此链接:
http://www.w3schools.com/CSS/CSS_pseudo_elements.asp
You could use a pseudo-element like this:
for an HTML like this:
Check this link:
http://www.w3schools.com/CSS/CSS_pseudo_elements.asp
CSS3 UI 规范。定义
caret-color
属性,它允许您独立于文本设置插入符号的样式。不幸的是,据我所知,该属性尚未在浏览器中实现。
对于 Gecko (Firefox),至少有一个错误报告。
The CSS3 UI spec. defines a
caret-color
property, which allows you to style the caret independently from the text.Unfortunately that property is not implemented in browser yet, as far as I know.
For Gecko (Firefox) there is at least a bug report for it.