tags:

views:

51

answers:

1

Hi,

I want to align the text inside combo boxes to the left (I'm in RTL mode).

All the combo boxes are inside a div, some other input tags are in the div, I do not want to change their style.

Thanks.

+3  A: 
#div-id select { text-align: left; }
Mark B