除粗体外的其他工具,当我点击加粗我的文字仍然没有变大胆?我正在努力实现。谁能帮我? 提前谢谢。
答案 0 :(得分:5)
我用css修复了问题,css必须放在materializecss
之后 .ql-editor strong{
font-weight:bold;
}
答案 1 :(得分:0)
我需要在样式前面加上:: ng-deep(或/ deep /)才能使其正常工作:
::ng-deep .ql-editor strong{
font-weight: bold;
}
答案 2 :(得分:0)
我面临着同样的问题。
在styles.scss中使用strong { font-weight: bold !important; }
,即可解决问题。