如何使编辑器的输入在新行输入中自动向下滚动?类似于https://jpuri.github.io/react-draft-wysiwyg/#/demo的示例6。现在,滚动会停留在顶部,而当光标移动到底部边界以下时,文本光标会隐藏。

最佳答案

div.DraftEditor-root {
    border: 1px solid #C0C0C0;
    height: 200px;
    width: auto;
    overflow-y: auto;
}

div.DraftEditor-editorContainer,
div.public-DraftEditor-content {
    height: 100%;
}
您可以在这里找到详细的答案
https://dev.to/tumee/how-to-style-draft-js-editor-3da2

08-07 11:03