Forgive me for asking such a simple question, I\'m new to both HTML and CSS. Is there an easy way to center a textarea? I figured I\'d just try using
textarea{
This should do the trick. It works for me here in 2020:
textarea { margin: auto; display: block; }