小技巧--select 文字右对齐

  1. 在 html 中,添加 dir 属性

  1. 在 css 中,添加样式
select {
    direction: rtl;
}
select option {
    direction: ltr;
}

你可能感兴趣的:(小技巧--select 文字右对齐)