Prev Demo
CSS3
>
Focus Selector
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <style> input:focus { border: 2px solid double; background-color: pink; } </style> <form> <fieldset> <legend>Enter Details</legend> Username <input type="text" name="user" /><br /> Password <input type="password" name="password" /> <br /> <input type="button" value="Submit" /> </fieldset> </form> </body> </html>
Note: We DO NOT save your trial code in our database.
Output