Solution 1: (simple solution)
select {
...
padding: 0 0 0 20px;
}
Demo 1
Solution 2: (added on 10/27/2017)
Only the selected number will be centered.
* Probably not yet supported by Safari
select {
...
text-align: center;
text-align-last: center;
}
Demo 2
source
share