我试图将我的 CKEditor 5 工具栏分成两部分,彼此相距很远。这是我的实际工具栏:
使用以下 html 呈现的代码:
我想要的是这样的:
toolbar: [
'heading',
'bold',
'italic',
'underline',
'=', // this is the delimiter
'alignment:left',
'alignment:right',
'alignment:center'
],
我想根据该分隔符生成此代码:
<div style="display: flex; flex-direction: row; justify-content: space-between;">
<div>
<!-- part 1 before the = -->
</div>
<div>
<!-- part 2 after the = -->
</div>
</div>
我不知道如何实现这一目标。有人有想法吗?