I am trying to stop disable in textarea. I am working in a markdown previewer and I want to apply that. I try this methods but it didn't work:
<textarea name="nowrap" wrap="soft">Something</textarea>
<!-- and css method:-->
textarea {
white-space: nowrap;
}
Thanks!