Share via

Having alignment issues in Justify

Howard Maffucci 0 Reputation points
2026-05-09T19:11:21.8733333+00:00

How to eliminate large spaces between words in justfiy setting on word on mac. Justify spreads out a sentence with large spaces between words.

Microsoft 365 and Office | Word | For home | MacOS
0 comments No comments

3 answers

Sort by: Most helpful
  1. John Korchok 232K Reputation points Volunteer Moderator
    2026-05-11T16:24:47.9633333+00:00

    Microsoft's justification algorithm is crummy. As you've noted, it only adds spaces between word, not between letters.

    Here's a macro you can run that will put the document into Word 2010 compatibility mode, then apply WordPerfect-style justification, which adds space between letters as well:

    Sub ApplyWPJustify()
        With ActiveDocument
            .SetCompatibilityMode wdWord2010
            .Compatibility(wdWPJustification) = True
        End With
    End Sub
    

    Please note, after you run this, if the document is upsaved to a current Word version, the justification will revert to the standard poor spacing.

    Or use left-aligned text, which has been shown to be more readable that justified text.

    Was this answer helpful?

    0 comments No comments

  2. Stefan Blom 340.3K Reputation points MVP Volunteer Moderator
    2026-05-10T14:17:20.5233333+00:00

    I am wondering if you are seeing distributed alignment rather than justified? The screen shot below shows the behavior of a distributed text paragraph:

    User's image

       

    See if you can fix it by selecting the text and then press Command+J to (re-)apply standard justified text.

    Was this answer helpful?

    0 comments No comments

  3. Kai-H 17,415 Reputation points Microsoft External Staff Moderator
    2026-05-10T08:50:10.0766667+00:00

    Hi, Howard Maffucci

    This usually happens when Word is trying to force a short line to stretch across the full page width. It can also happen if the line ends with a manual line break instead of a normal paragraph break.

    Here are some suggestions you can try:

    First, turn on formatting marks by clicking the Paragraph mark (¶) button on the Home tab. If you see a bent arrow at the end of the problem line, delete it and press Return normally. Manual line breaks can make justified text spread words too far apart.

    It is also recommended that you turn on hyphenation: go to Layout > Hyphenation > Automatic. This lets Word split longer words at the end of a line, so it does not need to create such large gaps between words.

    Thank you for your patience in reading, I hope this information has been helpful to you. 


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment."    

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread. 

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.