QnA 내용을 textarea로 하였고, 유동적으로 사이즈가 조절됐으면 좋겠다 싶었다.

<textarea id="qna_contn" class="inputs" name="qna_contn" onkeydown="javascript:fn_resize(this)" onkeyup="javascript:fn_resize(this)"></textarea>
textarea {
min-height: 5rem;
overflow-y: hidden;
resize: none;
}
function fn_resize(obj) {
obj.style.height = '1px';
obj.style.height = (12 + obj.scrollHeight) + 'px';
}