Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to add NicEdit textarea Scroll bar?

I am using NicEdit editor in my application but when i am writing text in the text area it is increasing the size instead of adding scrollbar to textarea . Please help with solution how can i add scrollbar to nicEdit editor text area Scrollbar .

like image 947
user6773905 Avatar asked Dec 07 '25 08:12

user6773905


1 Answers

set height according to you

<style>
    .nicEdit-main {
        overflow: auto !important;
        height: 5.5em;
    }
</style>
like image 186
Karan Mehta Avatar answered Dec 09 '25 20:12

Karan Mehta