我需要将输入插入符号解开或透明。我知道一种让它变得透明的方法:
color: transparent;
text-shadow: 0px 0px 0px #000;
但我需要另一种方式。
答案 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;
答案 1 :(得分:0)
这将适用于iOS8。
<input style="position: fixed; top: -1000px">
&#13;