在我的 JSP 页面中,我有一个选择框
<select id="subjectArea" name="subjectArea" class="inputstyle">
<option value="choose"><s:text name="global.generic_feed_target_choose" /></option>
<option value="subjArea">Subject Area</option>
</select>
它的 CSS 是
select.inputstyle{
width: 177px !important;
height: 26px !important;
margin-top: 5px !important;
direction: rtl !important;
}
但问题是,选择框中的选项也是右对齐的。
我希望选项在左侧对齐。我怎样才能做到这一点?