Textarea:没有边框的窗户的大小

时间:2011-08-18 01:22:16

标签: textarea

如何制作没有边框的textarea并占用所有空间?

谢谢大家!

1 个答案:

答案 0 :(得分:3)

这是:

<style type="text/css">
textarea.test
{  
width: 100%;
height: 100%;
border-color: Transparent;     
}
</style>
<textarea class="test"></textarea>