本文介绍了如何从输入类型文本框中删除闪烁光标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
- 我要删除显示你的小闪烁指针,其中下一个键入的字母将在
< input type =text> $我只能使用
CSS
,没有JS
允许。
- I want to remove the little flashing pointer that shows you, where the next typed letter will be in the
<input type="text">
. - I can only use
CSS
, noJS
allowed.
推荐答案
当然,您可以使用 CSS
Of course you can do it just with CSS
.
将此代码添加到您的CSS文件中:
Add this code to your CSS file:
border: none;
color: transparent;
text-shadow: 0 0 0 gray;
text-align: center;
&:focus {
outline: none;
}
这里有和
这篇关于如何从输入类型文本框中删除闪烁光标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!