How to set max height for text-angular component

1.2k Views Asked by At

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

1

There are 1 best solutions below

1
On BEST ANSWER

In the editor's css class-

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