views:

369

answers:

2

I have a multiple select element when i tried to aligned the options to the right i can't , and i searched the web for many articles but i failed to find the solution at last

A: 

All you need is:

select { text-align: right; }
Tyler Rash
There's a difference between rtl and align right. This needs clarifying.
Steve Perks
thank you for your answer but i doesn't work for google chrome browser
Both text-align and Direction won't work in webkit (Safari, Chrome)
Adam
A: 

Have you tried:

select { direction: rtl; }
Ayman Hourieh