天天看點

input光标顔色

移動端開發的時候,想要改變input輸入框的光标顔色,但不改變文字顔色

經過本人驗證,下面方案一行代碼即可:

<input type="text" />

<style>
input{
	caret-color:#fff;
}
</style>
           

效果看圖:

input光标顔色