如何用css取消输入框光标

html-css08

如何用css取消输入框光标,第1张

中文本框和密码框的高度一样,行高设置他们的高度,这样文字就会居中,光标也会居中;.wbk,.mm{ height:20pxwidth:120pxline-height:20px} 我这只是一个例子试试吧。。。

input{

color: transparent

text-shadow: 0 0 0 #000

}

谷歌浏览器测试有效,既隐藏了光标还可以输入文字。

没有光标似乎有点不可能吧,除非是只读或无效的input

<input type="text" disabled />无效的!

<input type="text" readonly />只读的!