Reputation: 3229
Is it good convention to center elements using text-align: center
?
Why can't I centre a textbox using the same text-align: center
?
jsFiddles: Div with buttons & Textarea
Upvotes: 0
Views: 437
Reputation: 5911
To center align a text-area, you have to style it as display:block;
, since textareas are inline elements.
Upvotes: 1
Reputation: 47687
Sure it is a good convention - that why text-align: center
was made for
Upvotes: 1