本文摘自PHP中文网,作者php中世界最好的语言,侵删。
这次给大家带来怎样让textarea文本域宽度和高度width及height自动适应,让textarea文本域宽度和高度width及height自动适应的注意事项有哪些,下面就是实战案例,一起来看一下。1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | <HTML>
<HEAD>
<TITLE>textarea宽度、高度自动适应处理方法</TITLE>
<!-- 控制宽度的自动适应 -->
<style type= "text/css" >
.comments {
width:100%;
overflow
:auto;
word- break
: break -all;
}
</style>
</HEAD>
<BODY>
<FORM METHOD=POST
ACTION
= " " >
<!-- 主要控制高度的自动适应 -->
<!-- 第一个是普通textarea -->
<textarea class = "comments" rows= "10" cols= "10" > </textarea>
<!-- 以下两种方式都可以解决textarea行高自动适应类容的高度 -->
<textarea class = "comments" rows=1 name=s1 cols=27 onpropertychange= "this.style.posHeight=this.scrollHeight " ></textarea>
<textarea class = "comments" style= "height:expression((this.scrollHeight>150)?'150px':(this.scrollHeight+5)+'px');overflow:auto;" ></textarea>
</FORM>
</BODY>
</HTML>
|
相信看了这些案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
阅读剩余部分
相关阅读 >>
css滚动条的宽度怎么设置
html表单中textarea属性怎么固定大小?textarea属性实例介绍
如何解决html、body元的高度问题
css如何设置td宽度
html文本域标签属性有哪些?html文本域标签属性用法介绍
css怎么设置td的宽度
怎样可以固定table的宽度 table-layout: fixed
html中的标签textarea的属性有哪些
css怎么设置文本框宽度
css textarea 不可拖动如何实现
更多相关阅读请进入《textarea》频道 >>
人民邮电出版社
本书对 Vue.js 3 技术细节的分析非常可靠,对于需要深入理解 Vue.js 3 的用户会有很大的帮助。——尤雨溪,Vue.js作者
转载请注明出处:木庄网络博客 » 怎样让textarea文本域宽度和高度width及height自动适应