I need to remove black border from HTML select
Any suggestions for a simple solution?
if you want to remove select border then try below css
select { -webkit-appearance: none; -moz-appearance: none; appearance: none; }
– Erekle Chumburidze Jan 15 '16 at 13:48