Styled Select Dropdown Template

Take full control over the appearance of dropdown menus with this custom-styled select box.

This template uses a clever CSS-only technique to wrap the native select element, allowing you to create a consistent, branded look with a custom down-arrow icon.

Screenshot showing a custom-styled dropdown select menu with a clean design and custom arrow.

Get Source Code → Preview →

About this Styled Select Dropdown

The native select element is notoriously resistant to styling. Different browsers and operating systems render it in completely different ways, especially the dropdown arrow. This template provides a common and effective way to achieve a consistent look.

The technique works by:

  1. Placing the select element inside a wrapper div, which is set to position: relative.
  2. Using CSS to hide the default dropdown arrow of the select element itself. This is done with the appearance: none; property.
  3. Adding a custom arrow icon (as an SVG or a CSS pseudo-element) and positioning it absolutely on the right side of the wrapper div.

The main benefit is that you are still using the native select element, so you retain all of its built-in functionality and accessibility, such as keyboard navigation and the native option picker on mobile devices. You're simply putting a custom visual "skin" on top of it.

Features

Dependencies

None. This template uses only pure HTML and CSS.

Code

Here's the full code for the styled select dropdown:

View Output