<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Input pseudo-classes</title> <style> input { outline: none; } input:focus { border-color: blue; border-radius: 3px; } </style> </head> <body> <h3>Input pseudo-classes</h3> <p>:focus</p> <input type="text" placeholder="first name" id="fname" /> <input type="text" placeholder="last name" /> </body> </html>
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions