通过CSS去除textarea控件拉伸功能如下:
1 .txtArea {
2 width : 320px ;
3 height : 145px ;
4 background : #fffffc ;
5 border : 1px #c2c1bd solid ;
6 margin : 4px 0 ;
7 overflow : auto ;
8 max-width : 320px ;
9 max-height : 145px ;
10 }
总结:核心内容就是给textarea对应的CSS添加了max-width和max-height属性就可以了。