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

前端之家收集整理的这篇文章主要介绍了position – 如何使内联ckeditor工具栏固定在顶部而不是浮动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的页面中使用内联CKEditor.我想把它固定在contenteditable div的顶部.目前,只要我滚动页面,它就会浮动.如何将工具栏位置固定在顶部?

解决方法

使用内联编辑器和 Shared Space插件的组合.有关示例,请查看CKEditor SDK页面上的 Inline Editor with Shared Toolbar and Bottom Bar演示.请注意,您可以查看和下载每个SDK示例的源代码 – 只需向下滚动到“获取示例源代码”并获取所需内容.
<div id="toolbarLocation></div>
<div id="editor" contenteditable="true"></div>

<script>

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

</script>
原文链接:https://www.f2er.com/css/215705.html

猜你在找的CSS相关文章