运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <head> <style> input:read-write { background-color: yellow; } </style> </head> <body> <h1>Demo of the :read-write selector</h1> <p>The :read-write selector selects form elements with no "readonly" attribute:</p> <p>A normal input element:<br><input value="hello"></p> <p>A readonly input element:<br><input readonly value="hello"></p> </body> </html>