陪你做好前端设计!
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>素材8网教程(study.sucai8.cn)</title> <style> input:read-write { background-color: yellow; } </style> </head> <body> <h3> :read-write 选择器实例演示。</h3> <p>普通的input元素:<br><input value="hello"></p> <p>只读的input元素:<br><input readonly value="hello"></p> <p> :read-write 选择器选取没有设置 "readonly" 属性的元素。</p> </body> </html>
运行结果