app页面用css 的direction 属性解决select 下拉框右对齐

direction 属性规定文本的方向 / 书写方向。

select标签

<div class="mui-input-row mir">
   <label style="margin-left: 5px;">部门</label>
   <select dir="rtl" id="dept" style="width:50%; height: 30px;">
   </select>
</div>

select的样式

#dept{
    direction: rtl;
}

#dept option{
    direction: ltr;
}

 

app页面用css 的direction 属性解决select 下拉框右对齐

上一篇:Android开发错误——Android Studio中遇到过的错误问题与解决方案汇总


下一篇:Android实战——第三方服务之Bmob后端云的答题系统小项目(四)