Prev Demo
CSS3
>
Read-Write Selector
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <style> input:read-write { color: red; background-color: lightblue; } </style> <body> <form> First Name<input type="text" name="txt" /> <br /> Last Name<input type="text" name="txt"/> <br /> <br /> Company Name<input type="text" value="SNIT Funda Service LLP" readonly="readonly" /> </form> </body> </html>
Note: We DO NOT save your trial code in our database.
Output