• ThemePlace
  • Categories
    • All templates
    • Creative
    • Portfolio
    • Photography
    • Art
    • Experimental
    • Corporate
    • Business
    • Marketing
    • Government
    • Retail
    • Fashion
    • Health & Beauty
    • Shopping
    • Travel
    • Food
    • Children
    • Technology
    • Hosting
    • Electronics
    • Software
    • Computer
    • Nonprofit
    • Churches
    • Charity
    • Environmental
    • Political
    • Activism
    • Entertainment
    • Nightlife
    • Restaurants & Cafes
    • Events
    • Film & TV
    • Music and Bands
    • Personal
    • Virtual Business Card
    • Social Media Home
    • Photo Gallery
    • Specialty Pages
    • 404 Pages
    • Under Construction
    • Miscellaneous
    • Resume / CV
    • Admin Templates
    • Miscellaneous
    • Mobile
    • Wedding
  • Blog
  • Contact Us
  • Home
  • Blog
  • Combining CSS :has() And HTML  For Greater Conditional Styling

Even though the CSS :has() pseudo-class is relatively new, we already know a lot about it, thanks to many, many articles and tutorials demonstrating its powerful ability to conditionally select elements based on their contents. We’ve all seen the card component and header examples, but the conditional nature of :has() actually makes it adept at working with form controls, which are pretty conditional in nature as well.

Let’s look specifically at the <select> element. With it, we can make a choice from a series of <option>s. Combined with :has(), we are capable of manipulating styles based on the selected <option>.

<select>
  <option value="1" selected>Option 1</option>
  <option value="2">Option 2</option>
  <option value="3">Option 3</option>
  <option value="4">Option 4</option>
  <option value="5">Option 5</option>
</select>

This is your standard <select> usage, producing a dropdown menu that contains options for user selection. And while it’s not mandatory, I’ve added the selected attribute to the first <option> to set it as the initial selected option.

Applying styles based on a user’s selection is not a new thing. We’ve had the Checkbox Hack in our pockets for years, using the :checked CSS pseudo-class to style the element based on the selected option. In this next example, I’m changing the element’s color and the background-color properties based on the selected <option>.

See the Pen demo 01 - Using the :has selector on a dropdown menu by Amit Sheen.

But that’s limited to styling the current element, right? If a particular <option> is :checked, then we style its style. We can write a more complex selector and style child elements based on whether an <option> is selected up the chain, but that’s a one-way road in that we are unable to style up parent elements even further up the chain.

That’s where :has() comes in because styling up the chain is exactly what it is designed to do; in fact, it’s often called the “parent selector” for this reason (although “family selector” may be a better descriptor).

For example, if we want to change the background-color of the <select> element according to the value of the selected <option>, we select the element if it has a specific [value] that is :checked.

See the Pen demo 02 - Using the :has selector on a dropdown menu by Amit Sheen.

Just how practical is this? One way I’m using it is to style mandatory <select> elements without a valid selected <option>. So, instead of applying styles if the element :has() a :checked state, I am applying styles if the required element does :not(:has(:checked)).

See the Pen demo 02.1 - Using the :has selector on a dropdown menu by Amit Sheen.

But why stop there? If we can use :has() to style the <select> element as the parent of an <option>, then we can also use it to style the parent of the <select>, as well as its parent, in addition to its parent, and even its parent... all the way up the chain to the :root element. We could even bring :has() all the way up the chain and sniff out whether any <select> child of the document :root :has() a particular <option> that is :checked:

:root:has(select [value="foo"]:checked) {
  // Styles applied if <option value="foo"> is <select>-ed
}

This is useful for setting a custom property value dynamically or applying a set of styles for the whole page. Let’s make a little style picker that illustrates the idea of setting styles on an entire page.

See the Pen demo 03 - Using the :has selector on a dropdown menu by Amit Sheen.

Or perhaps a theme picker:

See the Pen demo 04 - Using the :has selector on a dropdown menu by Amit Sheen.

How that last example works is that I added a class to each <select> element and referenced that class inside the :has() selector in order to prevent unwanted selections in the event that there are multiple <select> elements on the page.

And, of course, we don’t have to go all the way up to the :root element. If we’re working with a specific component, we can scope :has() to that component like in the following demo of a star rating component.

See the Pen demo 05 - Using the :has selector on a dropdown menu by Amit Sheen.

Watch a short video tutorial I made on using CSS to create 3D animated stars.
Conclusion

We’d be doing :has() a great disservice if we only saw it as a “parent selector” rather than the great conditional operator it is for applying styles all the way up the chain. Seen this way, it’s more of a modern upgrade to the Checkbox Hack in that it sends styles up like we were never able to do before.

There are endless examples of using :has() to create style variations of a component according to its contents. We’ve even seen it used to accomplish the once-complicated linked card pattern. But now you have an example for using it to create dropdown menus that conditionally apply styles (or don’t) to a page or component based the currently selected option — depending on how far up the chain we scope it.

I’ve used this technique a few different ways — e.g., as form validation, a style picker, and star ratings — but I’m sure there are plenty of other ways you can imagine how to use it in your own work. And if you are using :has() on a <select> element for something different or interesting, let me know because I’d love to see it!

Further Reading On SmashingMag

  • “Level Up Your CSS Skills With The :has() Selector,” Stephanie Eckles
  • “Meet :has, A Native CSS Parent Selector (And More),” Adrian Bece
  • “Setting And Persisting Color Scheme Preferences With CSS And A “Touch” Of JavaScript,” Henry Bley-Vroman
  • “The Complex But Awesome CSS border-image Property,” Temani Afif
  • Popular Posts

  • 5 Creative Ways Companies are Using Cha...

  • 25+ Best Earthy & Nature Fonts 2023

  • Thoughts on WordPress Achieving 40% Mar...

  • 5 Types of Sales Promotions Proven to I...

  • 55 Programmatic Advertising and First-P...

  • The Role of AI in Continuous Employee D...

  • Is PPC Worth It? | Pros and Cons of PPC for SMBs

    Is PPC Worth It? | Pros and Cons of PPC...

  • An Introduction to WordPress Block Themes

  • How to Make the Most of Your Digital Ca...

  • 100 Days of Web Experiments: A Designer...

  • 20+ Best Filmora Effects & Transitions ...

  • UI Interactions & Animations Roundup #35

  • 8 Top Blogging Platforms for Bloggers i...

  • 8 Best Free Media Library WordPress Plu...

  • Meet Hydrogen: A React Framework For Dynamic, Contextual And Personalized E-Commerce

    Meet Hydrogen: A React Framework For Dy...

  • 20+ Photography Trends in 2024

  • Ahrefs vs. Semrush: Which Is the Best O...

  • 35+ Best Watercolor Background Textures

  • Design Finds: Creative Slideshows

  • How to Create Interactive and Animated ...

  • Digital Marketing for B2B Companies [6 Strategies]

    Digital Marketing for B2B Companies [6 ...

  • What’s the Environmental Impact of Your...

  • 4 Types of Programmatic Advertising for Your Business [Guide]

    4 Types of Programmatic Advertising for...

  • 50+ Best Photoshop Actions & Effects of...

  • What Are Google Cached Pages and How Ca...

  • How to Do Digital Marketing and Make Money Moves

    How to Do Digital Marketing and Make Mo...

  • 7 Elements of a Highly Usable Landing Page

  • 70+ Best Animated Keynote Templates Wit...

  • Better Web Security Means Less Convenie...

  • What are the benefits of cryptocurrency...

  • 25+ Best Techno & Sci-Fi Fonts in 2023

  • Recreating Frontier Development Lab’s S...

  • Tropicalism: A Design Trend Coming Back...

  • 8 Content Marketing Hacks that Will Amp Up Your Content Marketing Plan

    8 Content Marketing Hacks that Will Amp...

  • Want Someone to Explain SEO? Start Here

    Want Someone to Explain SEO? Start Here

  • A Deep Dive Into The Wonderful World Of SVG Displacement Filtering

    A Deep Dive Into The Wonderful World Of...

  • 5 Examples of the Best Video Editing Software for Businesses

    5 Examples of the Best Video Editing So...

  • 25+ Diwali Mockups, Icons, Graphics & R...

  • How Even Small UX Changes Can Result In An Increase In Conversion (A Case Study)

    How Even Small UX Changes Can Result In...

  • 50 Best Website Color Schemes of 2023

  • Here’s How to Start a Content Marketing...

  • Why Web Design Matters for Your Canadia...

  • How to Install Facebook Pixel on a Webs...

  • TemplateMonster Gift Card – Best Digita...

  • Inspirational Websites Roundup: Webflow...

  • 12+ Best TikTok Video Templates, Interf...

  • Level Up With a Free .design Domain Name!

  • Collective #677

ThemePlace

Combining CSS :has() And HTML 

Successful subscription!
Please enter a valid email address!
Blog | Contact Us | Terms and Conditions
Visa
MasterCard
Google Pay
Apple Pay

© ThemePlace 2026 | All rights reserved