如何使内联ckeditor工具栏固定在顶部而不是浮动

我在我的页面中使用内联CKEditor。 我想让它固定在contenteditable div的顶部。 目前它是浮动,只要我滚动页面。 如何使工具栏位置固定在顶部?


使用内联编辑器和Shared Space插件的组合。 以CKEditor SDK页面上的共享工具栏和底栏演示来检查内嵌编辑器为例。 请注意,您可以查看并下载每个SDK示例的源代码 - 只需向下滚动到“获取示例源代码”并获取所需内容即可。

<div id="toolbarLocation></div>
<div id="editor" contenteditable="true"></div>

<script>

    CKEDITOR.disableAutoInline = true;
    CKEDITOR.replace( 'editor', { 
        sharedSpaces: { 
            top: 'toolbarLocation' 
        } 
    } );

</script>
链接地址: http://www.djcxy.com/p/77731.html

上一篇: How to make the inline ckeditor toolbar fixed at the top and not float

下一篇: Converting ipython notebook to html with separate images