Search code examples
cssrotativa

Rotativa doesn't recognize justify


This is the css I used

>  p {
>         text-align: justify;
>         text-justify: inter-word;
>     }

Solution

  • I have solved this issue my adding this in my css.

    body {
        text-rendering: geometricPrecision;
    }