首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

textarea大小控制有关问题

2012-04-19 
textarea大小控制问题response.write( textareacols 40name commentid commenttabindex 4 /texta

textarea大小控制问题
response.write( " <textarea   cols= '40 '   name= 'comment '   id= 'comment '   tabindex= '4 '> </textarea> ")这样写的时候cols为什么不能控制textarea的大小,改成style= 'width:300;height:120 '也没有用

[解决办法]
style是有用的.Response.Write( " <textarea cols= '40 ' name= 'comment ' style= 'width:300;height:120 ' id= 'comment ' tabindex= '4 '> </textarea> ");
[解决办法]
可能你的CSS冲突了
[解决办法]
标准点应该写上单位 width:300px;.....

热点排行