CSS - pseudo klasy :focus


kod wynik kodu
<html>
<head>
<style type="text/css">
input:focus {
  background: gold;
}
</style>
</head>
<body>
<fieldset>
  <legend>Informacje kontaktowe</legend>
  <label>imię:<br />
  <input type="text" name="name" /></label><br />
  <label>nazwisko:<br />
  <input type="text" name="surname" /></label><br />
  <label>przezwisko:<br />
  <input type="text" name="nickname" /></label>
</fieldset>
</body>
</html>
Informacje kontaktowe