| 1234567891011121314151617181920212223 |
- <p>
- <button id="destroyEditor">Destroy editor</button>
- <button id="initEditor">Init editor</button>
- </p>
- <div id="editor">
- <h2>Hello world!</h2>
- <p>This is an editor instance.</p>
- </div>
- <style>
- body {
- width: 10000px;
- height: 10000px;
- }
- .ck-editor {
- margin-top: 200px;
- margin-left: 100px;
- margin-bottom: 200px;
- width: 450px;
- }
- </style>
|