<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title></title> <style type="text/css"> input:focus { color: blue } /* //光标颜色 */ input { text-shadow: 0px 0px 0px red; /* //文字颜色 */ -webkit-text-fill-color: transparent; } </style> </head> <body> <input type="text" /> </body> </html>
