如何用CSS将select/option文本居中或居右对齐_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:28:22
Original
2120 people have browsed it

分类 JS学习 关键字 JavaScript 发布 kris 1453776529578

注意转载须保留原文链接,译文链接,作者译者等信息。  

目前在select元素中你使用css: text-align, 你会发现根本不起作用。

select { text-align: right }

option { text-align: right }

似乎在所有基于webkit的浏览器没有对select实现text-align这个CSS属性。

这里有一些临时的解决方案

1) 简单点的使用padding使其“看上去”对齐

比如: 这里比较适合宽度固定的场合,只要padding合适,效果还是不错的

select {

...    

padding: 0 0 0 20px;

}

示例 http://jsfiddle.net/P5k4D/1/

2) 使用一些UI库实现

比如jQueryUI的select menu http://jqueryui.com/selectmenu/

优点是可以解决select控制在各个浏览器界面不一致的问题。

3) 居右对齐: 可以使用rtl属性来来控制,

   

写成CSS的话则为:

select {

direction: rtl;

}

参考:

http://stackoverflow.com/questions/19790687/horizontally-text-center-for-select-option

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

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template