运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> input:read-only { background-color: yellow; } </style> </head> <body> <h1>Demo of the :read-only selector</h1> <p>The :read-only selector selects form elements with a "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>