如何隐藏文本区域但保持插入符号可见?

发布于 2024-10-21 01:14:43 字数 90 浏览 3 评论 0原文

我想知道是否可以在将文本区域的不透明度降低到零的同时保持插入符号可见。 实际上,我想做的是使文本字符串不可见,同时具有可见的插入符号,该插入符号正是文本可见时的位置。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

很酷不放纵 2024-10-28 01:14:43

是的,可以在文本区域上使用 color 属性。将其设置为透明将使文本透明。
另外,如果您不希望选择文本,则应将user-select 属性设置为none

Yes, it's possible using the color property on the textarea. Setting it to transparent will make the text transparent.
Also, if you don't want the text to be selected you should set the user-select property to none.

﹏雨一样淡蓝的深情 2024-10-28 01:14:43

您可以使用这样的伪元素:

p.article::first-letter {
  color: #ff0000;
}

对于这样的 HTML:

<p class="article">A paragraph in an article</p>

检查此链接:
http://www.w3schools.com/CSS/CSS_pseudo_elements.asp

You could use a pseudo-element like this:

p.article::first-letter {
  color: #ff0000;
}

for an HTML like this:

<p class="article">A paragraph in an article</p>

Check this link:
http://www.w3schools.com/CSS/CSS_pseudo_elements.asp

放手` 2024-10-28 01:14:43

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文