Quill中的公式框不完全可见。

问题描述 投票:-1回答:1

请在此输入图片描述

试图在我的项目中使用Quill。我使用的是Bootstrap类'row',有两列。右手边的列有Quill,一切都很好,除了这个公式框(见图)。谁能帮帮我?

quill
1个回答
1
投票

我用以下方法解决了这个问题 界限. 这里是代码片段。

let quill = new Quill('#editor-container', {
            modules: {
            formula: true,
            syntax: true,
            toolbar: '#toolbarOptions'
            },
            placeholder: 'Compose your question here...',
            theme: 'snow',
            bounds: '#editor-container'
        });
© www.soinside.com 2019 - 2024. All rights reserved.