Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个多行文本框。
<asp:TextBox ID="tx" runat="server" TextMode="MultiLine"></asp:TextBox>
如何从多行文本框中删除可拉伸属性?
你可以通过 CSS 做到这一点:
textarea { resize: none; }