select 文字右对齐


1、添加 dir 属性,适合中文,但是会导致英文单词或者有空格的地方文字变成从右到左。
<select dir="rtl">
    <option>Foo</option>    
    <option>bar</option>
    <option>to the right</option>
</select>

2、使用 css ,这个方法是比较靠谱的,建议使用

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

 

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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM