CK编辑器4内联模式偏移量内容

时间:2019-09-23 08:21:54

标签: ckeditor4.x

我正在以串联模式使用CK Editor 4

var input = document.createElement('DIV');
input.setAttribute('contenteditable','true');
input.innerHTML = '<p>my content</p>';
input.style.position='absolute';
input.style.top='300px'
window.CKE.inline(input,{
                startupFocus:true,
                // uiColor:'#545454',
                toolbar: [
                  [
                    "Cut",
                    "Copy",
                    "Paste",
                    "PasteText",
                    "PasteFromWord",
                    "Undo",
                    "Redo",

                    "Bold",
                    "Italic",
                    "Underline",
                    "Strike",
                    // "Subscript",
                    // "Superscript",
                    "CopyFormatting",
                    "RemoveFormat",
                    "Outdent",
                    "Indent",
                    // "Blockquote",
                    "Table",
                    "JustifyLeft",
                    "JustifyCenter",
                    "JustifyRight",
                    "Link",
                    "Unlink",
                    "HorizontalRule",
                    "Styles",
                    "Format",
                    "Font",
                    "FontSize",
                    "TextColor",
                    "BGColor",
                    "Maximize"
                  ]
                ]
              })

编辑器创建成功,但工具栏未漂浮在页面上。工具栏位于内容的顶部,为内容提供更多的顶部偏移。 我想要的是内容保持位置,工具栏浮在内容顶部。

0 个答案:

没有答案