I want my textarea to have a fixed width

This question already has an answer here:

  • How to disable resizable property of textarea? 13 answers

  • textarea {
      resize: vertical;
    }
    <textarea cols="10" rows="5" charswidth="23" name="text_body"></textarea>

    这可以通过CSS来实现。

        <textarea cols="10" rows="5" charswidth="23" name="text_body" style="resize:vertical"></textarea>
    链接地址: http://www.djcxy.com/p/27378.html

    上一篇: 如何禁止在ASP.NET MVC 2中调整TextArea.For的大小?

    下一篇: 我希望我的textarea具有固定的宽度