Search code examples
angularjstextangular

How to set max height for text-angular component


I need to set max-height for this this text editor.so I need a scrollable text editor if its height bigger than 200px.

The example is here. I am using like that also.

http://triangular.oxygenna.com/#/elements/textangular


Solution

  • In the editor's css class-

     max-height : 200px;
     overflow-y : scroll;