How to center a textarea using CSS?

前端 未结 5 2188
长发绾君心
长发绾君心 2021-01-31 08:00

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{
          


        
5条回答
  •  我在风中等你
    2021-01-31 08:20

    Set text-align of the element's parent to center, like this:

    HTML:

    CSS:

    div { text-align: center; }
    

    Here is an example: http://jsfiddle.net/ujzLt/

提交回复
热议问题