| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <head>
- <link rel="stylesheet" href="%APPS_DIR%ckeditor/build/modules/amd/theme/ckeditor.css">
- <style>
- a[href*="nw"], a[href*="ne"], a[href*="sw"], a[href*="se"] {
- position: absolute;
- }
- a[href*="nw"] {
- top: 10px;
- left: 10px;
- }
- a[href*="ne"] {
- top: 10px;
- right: 10px;
- }
- a[href*="sw"] {
- bottom: 10px;
- left: 10px;
- }
- a[href*="se"] {
- bottom: 10px;
- right: 10px;
- }
- .ck-editor_balloon-demo .ck-editor__editable {
- height: 300px;
- position: relative;
- }
- </style>
- </head>
- <h2>Simple editor</h2>
- <div id="editor">
- <p>This is an <a href="http://ckeditor.com">CKEditor5</a> from <a href="http://cksource.com">CKSource</a>.</p>
- </div>
- <h2>Balloon testing sample</h2>
- <div id="editor-balloon-demo">
- <p>
- <a href="http://nw">North West</a>
- <a href="http://ne">North East</a>
- <a href="http://sw">South West</a>
- <a href="http://se">South East</a>
- </p>
- </div>
|