My Quill editor Bold Not work?

Viewed 4065

Other tool working except the bold, When I click bold my text still not get bold? I work on materialize. Can anyone help me? Thanks in advance.

3 Answers

I fixed the issue with css, the css must be placed after the materializecss

 .ql-editor strong{
     font-weight:bold;
 }

I was facing the same issue. Use strong { font-weight: bold !important; } in styles.scss and it will solve the problem.

I needed an ::ng-deep (or /deep/ ) in front of my style to get it working:

    ::ng-deep .ql-editor strong{    
    font-weight: bold;
}
Related