简体   繁体   中英

flipping horizontally select box using css, jquery or smth

I think that it's really crazy question but anyway I want to know if maybe there is any chance to flip select box horizontally using css, jquery or smth... Text itself remains untouched but the select box must be flipped.

在此处输入图片说明

direction: rtl is the closest you can get while still using the native select element.

See: http://jsfiddle.net/epQFW/

Some basic CSS will do the trick. It's safe to use too with solid browser support as this is usually used for languages that display "right-to-left".

select { direction:rtl; }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM