VOOZH about

URL: https://www.geeksforgeeks.org/css/css-invalid-selector/

⇱ CSS :invalid Selector - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

CSS :invalid Selector

Last Updated : 29 Aug, 2024

This :invalid selector is used to select every form elements which does not validate according to the elements. This selector works only for some form elements with limitations such as input elements with min and max attributes, email fields with a legal email, or number fields with a numeric value, etc. Instead of using the :invalid selector, the :valid selector is used to selects the form elements which validate according to the element. 

Syntax:

:invalid {
// CSS property
}

Example:

Output:

👁 Image

Supported Browsers: The browser supported by :invalid selector are listed below:

  • Apple Safari 5.0
  • Google Chrome 10.0
  • Edge 12.0
  • Firefox 4.0
  • Opera 10.0
Comment
Article Tags: