The automotive industry has become heavily reliant on digital experiences, with vehicle configurators, online inventory searches, financing calculators, service scheduling, and increasingly, full online vehicle purchasing. Accessibility in this sector is critically important and widely neglected. A 2025 accessibility audit of the top 50 U.S. automotive dealer website platforms found that 96 percent had critical accessibility failures, with vehicle inventory search, build-and-price configurators, and financing application forms being the most common points of failure. The legal landscape is tightening rapidly. In the United States, automotive dealerships are explicitly named as places of public accommodation under ADA Title III, making their websites subject to accessibility requirements. Multiple class-action lawsuits have been filed against major dealer groups and OEM websites. The European Accessibility Act, effective June 2025, applies to automotive e-commerce services, meaning any manufacturer or dealership selling vehicles, parts, or services to EU consumers through digital channels must meet EN 301 549 standards. Beyond compliance, the business case is compelling: an estimated 25 percent of adults in the U.S. have some form of disability, and the vehicle purchase process increasingly begins online, with 88 percent of car buyers researching vehicles digitally before visiting a dealership. Inaccessible websites exclude potential customers during the most critical phase of the sales funnel. Common barriers include vehicle image galleries without alt text, build-and-price tools that rely entirely on mouse interaction, financing calculators with unlabeled form fields, and chat widgets that trap keyboard focus. This guide outlines the specific legal requirements, key accessibility issues, and a compliance checklist for automotive businesses.

Legal Requirements

Key Accessibility Issues in Automotive

Vehicle Configurators Inaccessible to Keyboard and Screen Reader Users

Build-and-price tools that let customers choose trim levels, colors, options, and packages are the centerpiece of OEM websites. These configurators typically use custom JavaScript components with drag-and-drop color swatches, hover-dependent option previews, and tab panels that are not keyboard-navigable. Screen reader users cannot determine which options are selected or navigate between configuration steps.

How to fix:

Implement keyboard navigation for all configuration steps using arrow keys for option groups and Enter/Space for selection. Use ARIA roles (role='tablist', role='radiogroup') and states (aria-selected, aria-checked) to communicate selections. Provide a text summary of the current configuration that updates via aria-live region as users make changes.

Vehicle Inventory Search with Inaccessible Filters

Inventory search pages use complex filter panels with price range sliders, expandable make/model/year selectors, and dynamically updated results. These filters frequently lack keyboard operability, do not announce filtered result counts to screen readers, and trap focus in overlay panels on mobile devices.

How to fix:

Use native HTML form controls (select, checkbox, input[type=range]) where possible. For custom filters, ensure full keyboard operability and ARIA labeling. Announce result count changes with an aria-live='polite' region (e.g., '47 vehicles match your filters'). Ensure filter panels can be opened and closed with keyboard and have proper focus management.

Financing Calculators and Credit Application Forms

Online financing tools and credit applications are critical to the car-buying journey. These forms frequently have fields without visible labels, rely on placeholder text as the only label, lack accessible error messages, and include complex multi-step flows where focus is lost between steps. Monthly payment calculators often use sliders without keyboard support.

How to fix:

Associate all form fields with visible <label> elements. Announce validation errors immediately using aria-describedby linked to error messages or aria-live regions. Maintain logical focus order through multi-step forms and return focus to the first error when validation fails. Provide text input alternatives for slider controls.

Vehicle Image Galleries Without Meaningful Alt Text

Vehicle detail pages feature extensive photo galleries with interior, exterior, and detail shots. These images almost universally have empty alt attributes, generic alt text like 'image 3 of 20', or auto-generated file names. Screen reader users cannot understand what the vehicle looks like, compare color options, or evaluate interior features.

How to fix:

Write descriptive alt text for each image that identifies the vehicle, view angle, and notable features (e.g., '2026 Honda Civic Sport sedan, exterior front three-quarter view in Rallye Red'). For 360-degree views, provide a text description of the vehicle alongside the interactive viewer. Ensure gallery navigation controls are keyboard-accessible and labeled.

Chat Widgets and Lead Capture Popups That Trap Focus

Automotive websites frequently deploy aggressive chat widgets, lead capture popups, and promotional overlays that appear on page load or after a delay. These elements often trap keyboard focus, preventing users from accessing the underlying page content, and lack accessible dismiss mechanisms.

How to fix:

Ensure all popups and chat widgets have a clearly visible close button that is the first focusable element within the overlay. Trap focus within the modal while it is open, then return focus to the triggering element on close. Chat widgets must be keyboard-operable with properly labeled input fields and message history accessible to screen readers.

Compliance Checklist

  • Vehicle build-and-price configurators are fully operable by keyboard with ARIA states communicating selections
  • Inventory search filters work with keyboard navigation and announce result count changes to screen readers
  • All financing calculator and credit application form fields have visible, associated labels
  • Form validation errors are announced to screen readers with focus moved to the first error field
  • Vehicle gallery images have descriptive alt text identifying the vehicle, view, and notable features
  • Chat widgets and popups have keyboard-accessible close buttons and do not trap focus
  • Color contrast meets WCAG 2.1 AA minimums (4.5:1 for text, 3:1 for large text and UI components)
  • All video content including virtual test drives and walkarounds have synchronized captions
  • The site functions correctly at 200% zoom without horizontal scrolling or content overlap
  • An accessibility statement is published with contact information for reporting barriers

Further Reading

Other Industry Guides