Examples

Auto Grow

Use Auto Grow with min-height: 400px and max-height: 800px to let the editor expand and contract with its content while preserving a defined height range.

Automatic Editor Height Adjustment to Content.

Rich Text Editor is the industry-leading online html editor. It enables content contributors easily create and publish HTML anywhere: on the desktop and on mobile.

Rich Text Editor toolbar is completely configurable and it is also effortless to implement. You just need a couple lines of code to add this editor to web applications.

Example code

<link rel="stylesheet" href="/richtexteditor/rte_theme_default.css" />
<script type="text/javascript" src="/richtexteditor/rte.js"></script>
<script type="text/javascript" src='/richtexteditor/plugins/all_plugins.js'></script>

<div id="div_editor1" style="min-height:400px;max-height:800px">
	<h2>Automatic Editor Height Adjustment to Content. </h2>
	<table>
		<tr>
			<td>
				<p>
					<img src="/uploads/j0262681.jpg" alt="" /></p>
			</td>
			<td>
				<p>Rich Text Editor is the industry-leading online html editor. It enables content contributors easily create and publish HTML anywhere: on the desktop and on mobile.</p>
			</td>
		</tr>
		<tr>
			<td>
				<p>
					<img src="/uploads/PH02366J.jpg" alt="" /></p>
			</td>
			<td>
				<p>Rich Text Editor toolbar is completely configurable and it is also effortless to implement. You just need a couple lines of code to add this editor to web applications.</p>
			</td>
		</tr>
	</table>
</div>

<script>
	var editor1 = new RichTextEditor("#div_editor1", { editorResizeMode: "height" });
</script>