Files
freeCodeCamp/guide/english/css/selectors/pseudo/optional/index.md
githrdw d97f0a56a6 Added optional selector (#28540)
* Added optional selector

Added optional selector

* Update index.md
2019-03-05 14:40:18 -08:00

558 B

title
title
Optional

Optional

The CSS :optional selector changes the style of an input element if the required tag is not used. The :optional selector can be used on the input, select and textarea element

In the example below, the required field will be blue and the optional field red

input {
  background-color: blue;
}

input:optional {
  background-color: red;
}

More Information: