| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <div id="editor">
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- <p>Line of text</p>
- </div>
- <style>
- .ck-editor {
- margin: 5em auto;
- max-width: 70%;
- }
- .plugin {
- text-align: center;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 10px;
- }
- .PluginA {
- padding: 1em;
- }
- .PluginB {
- padding: 2em;
- }
- .PluginC {
- padding: 3em;
- }
- .plugin * {
- text-align: center;
- }
- .plugin h2 {
- font-weight: bold;
- font-size: 16px;
- }
- .plugin h3 {
- font-size: 14px;
- }
- .plugin .toolbar {
- border: solid 1px #e1e1e1;
- box-shadow: inset 0 0 5px rgba( 0, 0, 0, .3 );
- margin: 10px 5px;
- padding: 15px;
- border-radius: 5px;
- }
- </style>
|