如何使输入光标透明或不闪烁?

时间:2016-11-07 11:53:11

标签: html css input cursor caret

我需要将输入插入符号解开或透明。我知道一种让它变得透明的方法:

color: transparent;
text-shadow: 0px 0px 0px #000;

但我需要另一种方式。

2 个答案:

答案 0 :(得分:0)



input[type="text"]{
    color : transparent;
    text-shadow : 0 0 0 #000;
}
input[type="text"]:focus{
    outline : none;
}

<input type="text" value="test message" />
&#13;
&#13;
&#13;

答案 1 :(得分:0)

这将适用于iOS8。

&#13;
&#13;
<input style="position: fixed; top: -1000px">
&#13;
&#13;
&#13;