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
display:block;テキストエリアはインライン要素であるため、テキストエリアを中央揃えにするには、スタイルを設定する必要があります。
display:block;
http://jsfiddle.net/M9Mnz/18/
確かにそれは良い慣習です - それがなぜtext-align: center作られたのか
デモ
これをスタイルに追加します。
text-align:center;
http://jsfiddle.net/M9Mnz/10/