How to center a textarea using CSS?
The margins won’t affect the textarea because it is not a block level element, but you can make it display block if you like: textarea { display: block; margin-left: auto; margin-right: auto; } By default, textareas are display: inline, which is why you can put them side-by-side easily, and why the text-align: center answers work … Read more