1 | <!DOCTYPE html> |
---|
2 | <!-- |
---|
3 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. |
---|
4 | For licensing, see LICENSE.md or http://ckeditor.com/license |
---|
5 | --> |
---|
6 | <html> |
---|
7 | <head> |
---|
8 | <meta charset="utf-8"> |
---|
9 | <title>Massive inline editing — CKEditor Sample</title> |
---|
10 | <script src="../../ckeditor.js"></script> |
---|
11 | <script> |
---|
12 | CKEDITOR.dtd.$editable.td = 1; |
---|
13 | </script> |
---|
14 | <link href="sample.css" rel="stylesheet"> |
---|
15 | <style> |
---|
16 | div[contenteditable="true"] { |
---|
17 | background-color: #f2f2f2; |
---|
18 | border: 1px dashed #ccc; |
---|
19 | } |
---|
20 | </style> |
---|
21 | </head> |
---|
22 | <body> |
---|
23 | <h1>Adjacent tables with inline content editable inside TD</h1> |
---|
24 | <table border="0" cellpadding="0" cellspacing="0" width="600"> |
---|
25 | <tbody> |
---|
26 | <tr> |
---|
27 | <td width="100%" ><div contenteditable="true"></div></td> |
---|
28 | <tr> |
---|
29 | </tbody> |
---|
30 | </table> |
---|
31 | <table border="0" cellpadding="0" cellspacing="0" width="600"> |
---|
32 | <tbody> |
---|
33 | <tr> |
---|
34 | <td width="100%"><div contenteditable="true"></div></td> |
---|
35 | <tr> |
---|
36 | </tbody> |
---|
37 | <table> |
---|
38 | </div> |
---|
39 | </body> |
---|
40 | </html> |
---|