387

I want to remove the dropdown arrow from a HTML <select> element. For example:

<select style="width:30px;-webkit-appearance: none;">
    <option>2000</option>
    <option>2001</option>
    <option>2002</option>
    ...
</select>

How to do it in Opera, Firefox and Internet Explorer?

enter image description here

5
  • 1
    Some answers/hacks for hiding it in Firefox - stackoverflow.com/questions/5912791/… Commented May 17, 2013 at 7:46
  • 4
    appearance #slectType { -webkit-appearance: none; appearance: none /*menulist*/ !important; max-width: 300px; line-height: 0px;} input[type='text'], select {max-height: 30px;max-width: 300px; text-align-last: center; /*text-indent: 5px;*/} button:hover {color: #FFF;background-color: #566977;box-shadow:none;border-color: #759AB5;} #errorMSG{z-index: 2147483647;} Browses[ CH:-webkit, FF:-moz, IE:-ms, Oprea:-o]; Commented May 23, 2016 at 13:14
  • 1
    Possible duplicate of Remove Select arrow on IE Commented Apr 4, 2017 at 10:14
  • Possible duplicate of HTML hide Select drop down arrow with css Commented Oct 15, 2017 at 18:45
  • 4
    For those who use Tailwind, add this class: appearance-none Commented Aug 7, 2022 at 17:30

16 Answers 16

429

There's no need for hacks or overflow. There's a pseudo-element for the dropdown arrow on IE:

select::-ms-expand {
    display: none;
}
Sign up to request clarification or add additional context in comments.

7 Comments

because the question was how to remove the dropdown arrow in IE. IE9 doesn't have this functionality, but this works in IE10. so unless you're using windows XP, you should be using IE10 anyway. IE11 is almost out. other option is an ugly CSS hack to hide the actual dropdown button and make your own.
link here's the ugly hack to hide the overflow
Works in IE11. Gracias!
This did not work in Firefox. Use Varun Rathore's solution below for Firefox.
this is for IE only. of course it won't work in Firefox.
|
399

The previously mentioned solutions work well with chrome but not on Firefox.

I found a Solution that works well both in Chrome and Firefox(not on IE). Add the following attributes to the CSS for your SELECTelement and adjust the margin-top to suit your needs.

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}
<select>
  <option>one</option>
  <option>two</option>
  <option>three</option>

</select>

4 Comments

This trick stopped working on Firefox as of version 31 (in Nightly build as of May 2014). Let's see what can be done in the meanwhile. This gist I wrote has the full lowdown: gist.github.com/joaocunha/6273016
Joäo Cunha's method checked and used succesfully. When you check it out, don't forget to open the link in firefox!
It worked for me. I wanted to use it for wkhtmltopdf to generate pdf from html. Thanks
text-indent only affects the active option, whereas padding-left affects both the selected option and the options in the drop-down, which looks cleaner IMO. I don't see the need for the text-overflow, if you simply want to remove the arrow.
254

Simple way to remove drop down arrow from select

select {
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}

/* For IE10 */
select::-ms-expand {
  display: none;
}
<select>
  <option>2000</option>
  <option>2001</option>
  <option>2002</option>
</select>

5 Comments

I just used appearance: none for Chrome and Firefox Quantum (v59 and up). I.e. no need vendor prefixes anymore.
@CPHPython Most browsers as of this comment still have a "partial support with prefix" tag on them...
@CPHPython you need to have Autoprefixer installed on your project for the unprefixed appearance: none to work. Most browsers still need the prefixes.
@DanielTonon oh, perhaps I was using some postcss package like that. I do not remember exactly, but I think I checked the browser's inspector before commenting.
This hsould be the accepted answer, as it actually answers the question :-)
71

Try this :

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 2px 30px 2px 2px;
    border: none;
}

JS Bin : http://jsbin.com/aniyu4/2/edit

If you use Internet Explorer :

select {
    overflow:hidden;
    width: 120%;
}

Or you can use Choosen : http://harvesthq.github.io/chosen/

5 Comments

Did you test your JSBin in IE and firefox? I still see the built in dropdown arrow in both.
Check with Choosen, I think it's the best choice.
"If you use Internet Explorer"? You need to consider the large % of the population who DO use IE and cater for them regardless
Our sites user stats are as follows: 5.21% IE or 2.37% Edge
"If you use IE" would be correct, it'd be better suited to say "If you need to support IE" but in this day and age, your technology should be properly targeted towards your audience, if you're running a web developer targeted website then I doubt you'll be needing to support ANY versions of IE.
17

Try This:

HTML:

<div class="customselect">
    <select>
    <option>2000</option>
    <option>2001</option>
    <option>2002</option>
    </select>
</div>

CSS:

.customselect {
    width: 70px;
    overflow: hidden;
}

.customselect select {
   width: 100px;
   -moz-appearance: none;
   -webkit-appearance: none;
   appearance: none;
}

Comments

16

In my case (on latest Mozilla version 94.0.2),

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

doesnt work but after checking the css I found the solution :

  • Arrow is contain in background-image so I solved it by just adding background-image: none;

I recommend use all rules

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: none;
} 

1 Comment

This is the solution - works if a select has the "multiple" attribute applied too.
15

Try this it works for me,

<style>
    select{
        border: 0 !important;  /*Removes border*/
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        text-overflow:'';
        text-indent: 0.01px; /* Removes default arrow from firefox*/
        text-overflow: "";  /*Removes default arrow from firefox*/
    }
    select::-ms-expand {
        display: none;
    }
    .select-wrapper
    {
        padding-left:0px;
        overflow:hidden;
    }
</style>
    
<div class="select-wrapper">
     <select> ... </select>
</div>

You can not hide but using overflow hidden you can actually make it disappear.

Comments

8

If you use TailwindCSS You may take advantage of the appearance-none class.

<select class="appearance-none">
  <option>Yes</option>
  <option>No</option>
  <option>Maybe</option>
</select>

1 Comment

Anyone know how to get this to work for selects using the "multiple" attribute?
7

Just wanted to complete the thread. To be very clear this does not works in IE9, however we can do it by little css trick.

<div class="customselect">
    <select>
    <option>2000</option>
    <option>2001</option>
    <option>2002</option>
    </select>
</div>

.customselect {
    width: 80px;
    overflow: hidden;
   border:1px solid;
}

.customselect select {
   width: 100px;
   border:none;
  -moz-appearance: none;
   -webkit-appearance: none;
   appearance: none;
}

Comments

4
select{
padding: 11px 50px 11px 10px;
background: rgba(255,255,255,1);
border-radius: 7px;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
color: #8ba2d4;

}

Comments

4

As I answered in Remove Select arrow on IE

In case you want to use the class and pseudo-class:

.simple-control is your css class

:disabled is pseudo class

select.simple-control:disabled{
         /*For FireFox*/
        -webkit-appearance: none;
        /*For Chrome*/
        -moz-appearance: none;
}

/*For IE10+*/
select:disabled.simple-control::-ms-expand {
        display: none;
}

Comments

2

You cannot do this with a fully functional cross browser support.

Try taking a div of 50 pixels suppose and float a desired drop-down icon of your choice at the right of this

Now within that div, add the select tag with a width of 55 pixels maybe (something more than the container's width)

I think you'll get what you want.

In case you do not want any drop icon at the right, just do all the steps except for floating the image at the right. Set outline:0 on focus for the select tag. that's it

1 Comment

I cannot get no help from these hints. Can anybody give adequate code here? Thank you.
2

there's a library called DropKick.js that replaces the normal select dropdowns with HTML/CSS so you can fully style and control them with javascript. http://dropkickjs.com/

Comments

2

Works for all browsers and all versions:

JS

jQuery(document).ready(function () {    
    var widthOfSelect = $("#first").width();
    widthOfSelect = widthOfSelect - 13;
    //alert(widthOfSelect);
    jQuery('#first').wrap("<div id='sss' style='width: "+widthOfSelect+"px; overflow: hidden; border-right: #000 1px solid;' width=20></div>");
});

HTML

<select class="first" id="first">
  <option>option1</option>
  <option>option2</option>
  <option>option3</option>
</select>

Comments

1

one simple and easy way to hide the caret icon on select html tag is to add the background-image to it in css with value as none along with appearance none;

select.without-icon {appearance:none;background-image:url('');}
<label>with Icon</label>
<select class="with-icon">
<option value="select" selected>Select</option>
<option value="Html Css">HTML CSS </option>
<option value="web development">Web Development</option>
<option value="Front End">Front End</option>
<option value="Programming">Programming</option>
</select>

<label>Without Icon</label>
<select class="without-icon">
<option value="select" selected>Select</option>
<option value="Html Css">HTML CSS </option>
<option value="web development">Web Development</option>
<option value="Front End">Front End</option>
<option value="Programming">Programming</option>
</select>

, just like this:

background-image:url('');

Comments

0

It works for me:

.dropdown-toggle::after {
    content: none;
}

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.