禁止textarea拉伸的方法是::
設置這個 style="resize:none" 屬性
例子:
<textarea id="productRemark" th:inline="text" th:text="${orderInfo?.dealErrorOrder?.productRemark}" style="width:450px;resize:none;"> </textarea>
原來的textarea的結果:

設置style=''resize:none;"后的結果是:

例子:
<textarea id="productRemark" th:inline="text" th:text="${orderInfo?.dealErrorOrder?.productRemark}" style="width:450px;resize:none;"> </textarea>
原來的textarea的結果:

設置style=''resize:none;"后的結果是:

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。