Table of Contents
Importance of Name: Drop-down list, menu, navigation
Customize The demand
Build a "hybrid" selector
Usability testing
About selectors for similar menus
Conclusion
Home Web Front-end CSS Tutorial Striking a Balance Between Native and Custom Select Elements

Striking a Balance Between Native and Custom Select Elements

Apr 05, 2025 am 09:32 AM

Striking a Balance Between Native and Custom Select Elements

This article discusses how to build a styled drop-down selection element that is both beautiful and accessible. We will cleverly combine the native<select></select> Elements and custom styles for the best user experience.

Importance of Name: Drop-down list, menu, navigation

During the research process, we found that terms such as "drop-down list", "menu", and "navigation" are often mixed, resulting in ambiguity. This article will clearly define the "drop-down list":

Drop-down list: An interactive component containing a button to show and hide a list of items, usually triggered by a mouseover, clicking, or tapping. The list is hidden by default and displayed after interaction. Lists usually overwrite other content in the form of blocky content (i.e. options).

Many interface elements look like drop-down lists, but simply referring to them as "drop-down lists" is as general as describing animals with "fish". We need to distinguish between three different types of drop-down lists: menu, navigation, and select elements:

  • Menu: List of commands or actions that users can execute in the page content.
  • Navigation: A list of links used for website navigation.
  • Select: Form Control (<select></select> ), used to display a list of options for user selection in the form.

Different users have different ways of perceiving and interacting with the interface, so there is subjectivity in the naming of UI elements and the definition of design patterns.

<menu></menu> Elements are deprecated and are not recommended. For detailed instructions on the included menu and menu buttons, and why the ARIA menu role should not be used for site navigation, please refer to the relevant resources.

We will focus on<select></select> The drop-down list type of the element.

<select></select> The style challenge of elements

According to MDN, there are three situations: "good, bad, and ugly".<select></select> Elements undoubtedly fall into the category of "ugly", and their styling support is insufficient, which leads developers to often seek alternatives.

Ideally, if you can avoid it<select></select> , it should be avoided. However, in some cases,<select></select> Still the best choice, such as numerous options, limited layout space or insufficient time/budget.

Customize<select></select> The demand

Create custom<select></select> When you are in the process of meeting the following requirements:

  • The button displays the currently selected option.
  • Click the button to toggle the visibility of the option list.
  • Clicking on the option list will update the selected value, the button text changes accordingly, and the option list will close.
  • Clicking outside the component will close the list of options.
  • The trigger contains a triangle icon pointing downward indicating that the option exists.

However, this only meets some of the needs. Native<select></select> The element also provides the following functions:

  • Regardless of the user's visual ability, the selected options are clearly visible.
  • Components are able to interact with the keyboard in a predictable way (e.g., use arrow keys to navigate, Enter keys to select, Esc keys to cancel, etc.).
  • Assistive technologies (such as screen readers) are able to clearly announce elements to users, including their roles, names, and status.
  • Adjust the position of the option list (i.e. it will not be clipped by the screen).
  • Elements adhere to user's operating system preferences (such as high contrast, color scheme, animation, etc.).

Many customizations<select></select> No component can fully meet these needs.

Build a "hybrid" selector

Build simple customization<select></select> Will sacrifice functionality in exchange for aesthetics. A better way is to provide native by default<select></select> , and replace it with a more beautiful custom version where possible. This is the philosophy of the "hybrid" selector. It contains two selectors:

  • Native<select></select> , visible and accessible by default.
  • Customize<select></select> , hidden by default, only displayed when using the mouse.

Here is an example of HTML structure:

 <label for="selectNative">Main job role</label>
<div>
  <select id="selectNative" class="selectNative">
    <option value="1">Option 1</option>
    <option value="2">Option 2</option>
  </select>
  <div class="selectCustom">
    <!-- Custom select content -->
  </div>
</div>
Copy after login

The CSS code is used to control the display and position of the two selectors:

 .selectNative,
.selectCustom {
  position: relative;
  width: 22rem;
  height: 4rem;
}

.selectCustom {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

@media (hover: hover) {
  .selectCustom {
    display: block;
  }
  .selectNative:focus .selectCustom {
    display: none;
  }
}
Copy after login

JavaScript code is used to handle click events, synchronize the values ​​of two selectors, and keyboard navigation.

Usability testing

We conducted a small usability test, which included people with disabilities, tested using different equipment and assistive technologies. Test results show that the method works, but more extensive testing is still required.

The advantages of this method are:

  • Mobile and tablet users get native<select></select> , providing better user experience and performance.
  • Keyboard users are able to be native in the expected way<select></select> Interaction.
  • Assistive technology can be native like normal<select></select> Interaction.
  • Mouse users are able to enhance customization with<select></select> Interaction.

This method provides all users with the necessary native functionality without the need for additional work to implement all native features.

However, this approach is not omnipotent, it works with simple selectors and may not work for complex interactions.

About selectors for similar menus

If the selector always has selected options (such as sorting content), then native can be used<select></select> Or customize the menu. Pay attention to the input criteria of WCAG 3.2.2:

Changing the settings of any user interface component should not automatically cause context changes unless the user has been informed of its behavior before using the component.

To meet this criterion, you need to warn the user before the user interaction, or add instructions after the selector.

Conclusion

Building a truly accessible selector component is harder than it seems. The "hybrid" selector is one way to try to get as much native functionality as possible while maintaining its aesthetics. If resources allow, make sure to conduct adequate testing before releasing the components.

Remember to use the correct name when creating the "drop-down list" component. ?

The above is the detailed content of Striking a Balance Between Native and Custom Select Elements. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Vue 3 Vue 3 Apr 02, 2025 pm 06:32 PM

It&#039;s out! Congrats to the Vue team for getting it done, I know it was a massive effort and a long time coming. All new docs, as well.

Building an Ethereum app using Redwood.js and Fauna Building an Ethereum app using Redwood.js and Fauna Mar 28, 2025 am 09:18 AM

With the recent climb of Bitcoin’s price over 20k $USD, and to it recently breaking 30k, I thought it’s worth taking a deep dive back into creating Ethereum

Can you get valid CSS property values from the browser? Can you get valid CSS property values from the browser? Apr 02, 2025 pm 06:17 PM

I had someone write in with this very legit question. Lea just blogged about how you can get valid CSS properties themselves from the browser. That&#039;s like this.

Stacked Cards with Sticky Positioning and a Dash of Sass Stacked Cards with Sticky Positioning and a Dash of Sass Apr 03, 2025 am 10:30 AM

The other day, I spotted this particularly lovely bit from Corey Ginnivan’s website where a collection of cards stack on top of one another as you scroll.

A bit on ci/cd A bit on ci/cd Apr 02, 2025 pm 06:21 PM

I&#039;d say "website" fits better than "mobile app" but I like this framing from Max Lynch:

Using Markdown and Localization in the WordPress Block Editor Using Markdown and Localization in the WordPress Block Editor Apr 02, 2025 am 04:27 AM

If we need to show documentation to the user directly in the WordPress editor, what is the best way to do it?

Comparing Browsers for Responsive Design Comparing Browsers for Responsive Design Apr 02, 2025 pm 06:25 PM

There are a number of these desktop apps where the goal is showing your site at different dimensions all at the same time. So you can, for example, be writing

Why are the purple slashed areas in the Flex layout mistakenly considered 'overflow space'? Why are the purple slashed areas in the Flex layout mistakenly considered 'overflow space'? Apr 05, 2025 pm 05:51 PM

Questions about purple slash areas in Flex layouts When using Flex layouts, you may encounter some confusing phenomena, such as in the developer tools (d...

See all articles