문제

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>
도움이 되었습니까?

해결책

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>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top