CSS Select Dropdown Generator

Home/Tools/Select Dropdown Generator

Style native select elements with custom colors, borders, border radius, and custom arrow.

No sign-up neededRuns in your browserProduction-ready CSS

Select Style

10px
14px
10px
14px

Preview

Generated CSS
select.styled-select {
  -webkit-appearance: none;
  appearance: none;
  background-color: #ffffff;
  color: #111827;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 42px 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,..."); /* arrow SVG */
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

select.styled-select:focus {
  border-color: #0071e3;
  box-shadow: 0 0 0 3px #0071e333;
}