Hi
Currently, when I insert an image into the rich text editor, it defaults to a max-height value. It specifies something like 1400px, which seems to be related to the browser size. I know there is an option to specify the max-height value, but how do I not specify it?
my RTE option
<RichTextEditorImageSettings SaveUrl="api/Image/Save" Path="[my api path]" />
below is img tag when I insert image
<img src="[img source]" class="e-rte-image e-imginline e-resize" alt="20190731_143458.jpg" width="auto" height="auto" style="min-width: 0px; min-height: 0px; max-height: 1423px;">
This is because I want to resize image with a stylesheet, but I can't because of the inline styles.
Thank you