🏫 TECH/🖼️ Front

[textarea] To increase the height automatically

팀드모네 2017. 10. 14. 02:00
728x90


[HTML]

<textarea class="test" onkeyup="this.style.height='26px'; this.style.height = this.scrollHeight + 'px';"></textarea>


[CSS]

.test {

    resize:none;

    line-height:30px;

    width:100%;

    overflow-y:hidden;

    height:30px;

}


thank!

반응형