I want to center the text when using: < select > < option > . I customized < select > to a nice rectangle button, but the text is aligned to the left and I don't know how to target it in CSS so I can center it.
So far I have tried:
option { text-align:center; }
and
option[value=0] { text-align:center }
No luck..
Here is what I have so far:
I need the text to be centered. How do I do that with the < option > element?