如何使多行 TextBox 控件不可调整大小?

发布于 2024-11-09 08:09:50 字数 70 浏览 0 评论 0原文

如何使多行 TextBox 控件不可调整大小?

我正在使用 asp.net 和 c#,但找不到执行此操作的选项

How can I make a TextBox control that is multiline not be resizable?

I am using asp.net with c# and I can't find an option to do this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

话少情深 2024-11-16 08:09:50

您应该能够使用以下 css 在 Chrome 和 Safari 中禁用文本区域大小调整:

textarea {
    resize: none;
}

You should be able to disable textarea resizing in Chrome and Safari with this css:

textarea {
    resize: none;
}
变身佩奇 2024-11-16 08:09:50

不是首选代码,但这对我有用。这个样式会覆盖css

<asp:TextBox id="tb5" TextMode="multiline" style="resize:none" width="330px" Height="50px" wrap="true" runat="server" />

Not preferred code, but this worked for me. This style overwrites the css

<asp:TextBox id="tb5" TextMode="multiline" style="resize:none" width="330px" Height="50px" wrap="true" runat="server" />
絕版丫頭 2024-11-16 08:09:50

我正在使用以下方法,它对大多数人来说最有效;

.mymultitextboxclass{max-height:100px;min-height: 100px;max-width:400px;min-width:400px;}

然后将此 css 类设置为您的多行文本框。看到它:http://jsfiddle.net/tugberk/RKcbn/

I am using the following method and it works most on most of them;

.mymultitextboxclass{max-height:100px;min-height: 100px;max-width:400px;min-width:400px;}

then set this css class to your MultiLine Textbox. see it : http://jsfiddle.net/tugberk/RKcbn/

和影子一齐双人舞 2024-11-16 08:09:50

控件上没有这样的选项。

这完全取决于浏览器及其呈现文本框的方式。

您可以通过 CSS resize 属性来控制它,尽管这取决于浏览器。

There is no such option on the control.

This completely depends on the browser and how it renders textboxes.

You can control this via the CSS resize property, though this is browser dependent.

把回忆走一遍 2024-11-16 08:09:50

创建一个CSS类如下:

 .MultiLineTextBox
{
    resize: none;

}

然后在textbox的代码中,

<asp:TextBox ID="txtAdd" runat="server" TextMode="MultiLine" BorderStyle="Inset"
CssClass="MultiLineTextBox"></asp:TextBox>

Create a CSS class as follows:

 .MultiLineTextBox
{
    resize: none;

}

Then in the code of textbox,

<asp:TextBox ID="txtAdd" runat="server" TextMode="MultiLine" BorderStyle="Inset"
CssClass="MultiLineTextBox"></asp:TextBox>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文