2

Hello guys i have a drop down select box i have used the text-align:center; for centering the

text but its only working in Firefox not in IE, Chrome.

here is the code:

.option
{
  text-align:center;
}

2 Answers2

1

You could try adding padding-left on the select element.

This doesn't produce exactly the same result as text-align:center, but maybe it's close enough for you.

FIDDLE

Danield
  • 121,619
  • 37
  • 226
  • 255
0

Wrap it in a div, and use margin: auto; for the div. (if you want to center the whole element)

Popa Andrei
  • 318
  • 1
  • 7
  • 15