-1

I need to center integers in my select attribute, but I have no idea, how to make that, because text-align:center is not working, display:block and margin:auto is not working too.

This is a jsfiddle link

Jad Chahine
  • 6,849
  • 8
  • 37
  • 59
Tomas Bajoras
  • 329
  • 1
  • 3
  • 11
  • 5
    research before answering: http://stackoverflow.com/questions/10813528/is-it-possible-to-center-text-in-select-box – Ben Sewards Mar 03 '16 at 13:59

1 Answers1

0

For chrome:

  • Use text-align-last:center; instead of text-align: center;

    Try this jsfiddle link

  • Use padding-left: 80px;

    Try this jsfiddle link

    OR drop the <select> and use an <input type="text"> and a <div> to give you the exact feel of a select list but with the ability to do everything as it will be a <li>.

  • Jad Chahine
    • 6,849
    • 8
    • 37
    • 59