Jafar Ali
Jafar Ali

Reputation: 1114

Reposition dropdown of HTML <SELECT> element

I there a way to move the list dropdown of html select element a couple of pixels down.

Upvotes: 0

Views: 1764

Answers (1)

Dziad Borowy
Dziad Borowy

Reputation: 12579

theoretically you could hack it setting border-bottom of the select element, e.g.:

select { border-bottom: 5px solid transparent; }

but there are better ways, like custom plugins for dropdowns, etc.

Upvotes: 3

Related Questions