select 文字右對齊

一、添加dir 屬性,適合中文,可是會致使英文單詞或者有空格的地方文字變成從右到左。
<select dir="rtl">
    <option>Foo</option>    
    <option>bar</option>
    <option>to the right</option>
</select>

二、使用 css ,這個方法是比較靠譜的,建議使用css

select {
    direction: rtl;
}
select option {
    direction: ltr;
}

 

參考:http://stackoverflow.com/questions/7920677/text-align-right-on-select-or-optionspa

相關文章
相關標籤/搜索