Forcing HTML textarea to use a monospace font using CSS

前端 未结 4 1620
粉色の甜心
粉色の甜心 2020-12-14 05:28

How can I make my text area use a monospaced font?

4条回答
  •  感情败类
    2020-12-14 06:01

    textarea
    {
    font-family: monospace;
    }
    

    You may need to add an important if not working

    textarea
    {
    font-family: monospace !important;
    }
    

提交回复
热议问题