html - Select Box alignment differ in chrome and mozilla -


enter image description here

selectbox font differ chrome , mozilla. correctly aligning in mozilla. not in chrome

css

 select {     -moz-appearance: none;     background: rgba(0, 0, 0, 0) url("../img/select-arrow.png") no-repeat scroll 90% center;     border: 0 none !important;     border-radius: 4px;     box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) inset;     color: #000;     height: 22px;     padding: 0;     text-indent: 0.01px;     text-overflow: "";     width: 67%; } 


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -