Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

CSS Basic

CSS :invalid Selector

Posted in CSS Tutorial
Updated on Sep 20, 2024
By Mari Selvan
πŸ‘οΈ 3 - Views
⏳ 4 mins
πŸ’¬ 0
CSS :invalid Selector

Photo Credit to CodeToFun

πŸ™‹ Introduction

The :invalid selector in CSS is used to select form elements whose values fail to meet validation criteria. It is especially useful for styling form inputs that have incorrect or incomplete data based on input type, pattern, or required fields.

This selector helps enhance form usability and provides visual feedback to users during input.

πŸ’‘ Syntax

The signature of the :invalid Selector is as follows:

Syntax
Copied
Copy To Clipboard
:invalid {
    /* CSS properties */
}

The :invalid selector applies to form elements such as <input>, <textarea>, and <select> that have built-in validation rules, including type, pattern, min, max, or the required attribute.

πŸ“ Example

Here’s a practical example that demonstrates the use of the :invalid selector:

☠️ HTML

HTML
Copied
Copy To Clipboard
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CSS :invalid Selector Example</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <form>
        <label for="email">Email:</label>
        <input type="email" id="email" name="email" placeholder="Enter your email" required>
        
        <label for="age">Age:</label>
        <input type="number" id="age" name="age" min="18" max="65" placeholder="Enter your age" required>
        
        <button type="submit">Submit</button>
    </form>
</body>
</html>

🎨 CSS

CSS
Copied
Copy To Clipboard
/* Style for invalid form elements */
:invalid {
    border: 2px solid red;
    background-color: #ffe0e0;
}

/* Style for valid form elements */
:valid {
    border: 2px solid green;
    background-color: #e0ffe0;
}

In this example:

  • If the email input field is left empty or contains an invalid email address, it will be styled with a red border and a light red background.
  • The age input must be a number between 18 and 65. If it’s outside this range or left empty, it will also be marked as invalid.

πŸ’¬ Usage Tips

  • The :invalid selector works in conjunction with built-in HTML5 validation attributes like type, pattern, required, min, and max.
  • You can combine :invalid with other selectors to create more specific styling rules. For instance, input:invalid will apply only to invalid input elements.
  • Pair :invalid with :valid to provide users with feedback when they correct their input.

⚠️ Common Pitfalls

  • The :invalid selector will not work if the form or input fields lack validation rules such as required, pattern, or type.
  • Different browsers may show their own validation styles (such as tooltips or borders), so it’s important to test your styles across browsers to ensure consistent behavior.
  • If JavaScript is used for custom validation, it might override the default browser validation and affect how :invalid works.

πŸŽ‰ Conclusion

The :invalid selector is a key component of modern form design, allowing developers to provide instant feedback when users input invalid data.

By using this selector, you can improve form accessibility, enhance user experience, and make data validation clearer and more visually intuitive.

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy