css textarea固定大小不显示滚动条

textarea{
        resize:none;
        width:200px;
        height:100px;
        max-height:100px;
        max-width:200px;
        overflow:auto;  /*使不显示滚动条*/
}