如何使用fontsize函数限制html中textarea中的文本
我有一个文本区域,用户只能在其中输入有限数量的字符。我有一个与其相关的字体大小选择器和字体系列选择器。该文本区域位于图像上,我必须将文本限制在有限的空间内。我可以通过什么方式限制文本区域的参数(大小和系列)?我希望我用了正确的词语来解释我的问题!
i have a textarea in which users can put only a limited number of character. I have a font-size selector and a font-family selector associated whit it. This textarea is on a image and i have to limit text in a limited space. in which way i can limit textarea in function of that parameters ( size and family) ? i hope i used the right words to explain my problem!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
maxlength
限制文本区域的长度。以下 HTML 仅支持 5 个字符:Use
maxlength
for limit the length of textarea. The following HTML support only 5 character: