Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 居中元素是一个很好的约定text-align: center吗?为什么我不能使用相同的文本框居中text-align: center?
text-align: center
jsFiddles:带按钮和 文本区域的Div
当然这是一个很好的约定 - 这就是text-align: center为什么
演示
将此添加到样式中:
text-align:center;
http://jsfiddle.net/M9Mnz/10/
要居中对齐文本区域,您必须将其样式设置为display:block;,因为 textareas 是内联元素。
display:block;
http://jsfiddle.net/M9Mnz/18/