Textarea Resize hakkında
Merhaba,
Textarea'nın border'larını sıfırladım, scroll barını gizledim ve otomatik uzaması için bir kod buldum. Ancak textarea'nın sonuna geldiğimde browser'ın scrol l barı beni yukarı çekiyor. Bu durumu nasıl çzeöebilirim?
<textarea type="text" class="content-form" placeholder="... içerik" id="content"></textarea>
function auto_grow(element) {
element.style.height = "5px";
element.style.height = (element.scrollHeight)+"px";
}
.content-form {
border-top-style: hidden;
border-right-style: hidden;
border-left-style: hidden;
border-bottom-style: hidden;
overflow: auto;
resize: none;
overflow: hidden;
width: 100%;
}
.content-form:focus{
outline: none;
}