I keep getting spaces mis-aligning the justified .css

After seeing this,

I got this on reading mode, though my editing mode looks perfect

I hope, I can get perfectly ‘justified’ alignment on every text.

If you are using the exact snippets from the linked topic, the

.markdown-preview-view p {...}

part is only targeting paragraphs ( p ), so you’ll need to add to it to cover unordered and ordered lists (and possibly more). e.g.

/* reading mode */
.markdown-preview-view :is(p,ul,ol) {
    text-align: justify;
    text-justify: inter-word;   
}
1 Like

Yes, It works!

Thank you!

but still liked to apply every nook and cranny.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.