Clinton Green
Clinton Green

Reputation: 9977

Text-align right not flush

I have the text aligned right within a td. The text is aligning right but some lines are not flush against the border.

<td style="text-align: right;">
    <p>
        Street Address
        <br>
        State
        <br>
        Country
    </p>
</td>

Upvotes: 0

Views: 162

Answers (1)

Clinton Green
Clinton Green

Reputation: 9977

To solve this quirk I put all the text on one line in the code and it worked.

<td style="text-align: right;">
    <p>
        Street Address<br>State<br>Country
    </p>
</td>

Upvotes: 2

Related Questions