我使用ngx-羽毛笔编辑器,并且存在空格问题。编辑文本时出现问题。我尝试将早期生成的html插入编辑器,但浪费了白色字符。
def clean_list(l1, l2):
if l1 == l2:
return 0
if l1 == []:
return clean_list
if l1[0] not in l2:
return l1[0] + clean_list(l1[1:], l2)
else:
return clean_list(l1[1:], l2)
unique = clean_list([1,2,3,4,5,6,7], [2,4,6])
print(unique)
我试图覆盖样式:
<quill-editor #editor [modules]="modules" formControlName="description" [style]="{height: '200px'}"></quill-editor>
以样式添加时,编辑器在工具栏上有额外的空间 enter image description here
我看到ql编辑器类具有空格:预包装,但不适用于我。 谢谢您的回复
答案 0 :(得分:0)
尝试将其添加到CSS中,然后它将空白替换为
:host /deep/ .ql-editor {
white-space: normal!important;
}
或
.ql-editor {
white-space: normal!important;
}