如何使多行 TextBox 控件不可调整大小?
如何使多行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您应该能够使用以下 css 在 Chrome 和 Safari 中禁用文本区域大小调整:
You should be able to disable textarea resizing in Chrome and Safari with this css:
不是首选代码,但这对我有用。这个样式会覆盖css
Not preferred code, but this worked for me. This style overwrites the css
我正在使用以下方法,它对大多数人来说最有效;
然后将此 css 类设置为您的多行文本框。看到它:http://jsfiddle.net/tugberk/RKcbn/
I am using the following method and it works most on most of them;
then set this css class to your MultiLine Textbox. see it : http://jsfiddle.net/tugberk/RKcbn/
控件上没有这样的选项。
这完全取决于浏览器及其呈现文本框的方式。
您可以通过 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.创建一个CSS类如下:
然后在textbox的代码中,
Create a CSS class as follows:
Then in the code of textbox,