Result Size: 625 x 664
x
 
<!DOCTYPE html>
<html>
<head>
<style>
input:focus {
  background-color: yellow;
}
</style>
</head>
<body>
<h1>Demo of the :focus selector</h1>
<p>Click inside the text fields to see a yellow background:</p>
<form>
  First name: <input type="text" name="firstname"><br>
  Last name: <input type="text" name="lastname">
</form>
</body>
</html>