0

How can i remove dropdown arrow in Firefox

I try many examples but not only a one example make something better for me

Please help me for this situation

here is my jsfiddle example

jsfiddle.net/m_atteeq/JjgVj/

I'm new on this forum and this is my 1st question

Atteeq
  • 3
  • 3

1 Answers1

0

try like this: demo

HTML:

<div class="select">
    <select name="month">
        <option value="na">Month</option>
        <option value="1">January</option>
        <option value="2">February</option>
        <option value="3">March</option>
        <option value="4">April</option>
        <option value="5">May</option>
        <option value="6">June</option>
        <option value="7">July</option>
        <option value="8">August</option>
        <option value="9">September</option>
        <option value="10">October</option>
        <option value="11">November</option>
        <option value="12">December</option>
    </select>
</div>

CSS:

.select {
    width: 100px;
    overflow: hidden;
}
.select select {
    text-indent: 10px;
    text-overflow:'';
    width: 120px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;

}

You can try like this or you can use custom select box... Hope this helps

G.L.P
  • 7,119
  • 5
  • 25
  • 41