css - Indenting text on html select tag -


i have select tag trying give style.

<select class="points-selection"         ng-options="line line.pick line in slip.lines"> </select> 

then have this

  .points-selection {     background-color: get-color(nieve);     border: 0;     border-radius: get-space(xxx-small);     color: get-color(night);     cursor: pointer;     margin-top: get-space(xxx-small) + 1.5;     padding: get-space(xxx-small);     text-indent: 32.5%;     width: 100%;   } 

i have text-indent prop set 32.5%.

in chrome doing this

enter image description here

which need.

but have on firefox

enter image description here

clearly text not centered in firefox, that's issue far.

so should fix ?

try normalizing css every browser

*{      margin:0px;      padding:0px;  } 

or go link normalize.css in github


Comments

Popular posts from this blog

javascript - Bootstrap Popover: iOS Safari strange behaviour -

Magento/PHP - Get phones on all members in a customer group -

session - Logging Out Using PHP -