运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> ::placeholder { color: red; opacity: 1; /* Firefox */ } ::-ms-input-placeholder { /* Edge 12-18 */ color: red; } </style> </head> <body> <p>Change the placeholder color:</p> <input type="text" placeholder="A red placeholder text.."> </body> </html>