Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Right aligned text with white-space: pre-wrap #2384

Open
timpuri opened this issue Feb 17, 2025 · 1 comment
Open

Right aligned text with white-space: pre-wrap #2384

timpuri opened this issue Feb 17, 2025 · 1 comment
Labels
bug Existing features not working as expected

Comments

@timpuri
Copy link

timpuri commented Feb 17, 2025

When printing right aligned text and element has white-space: pre-wrap there is invalid right padding.

Example HTML

<html>
<head>
    <title>Text align right and white-space: pre-wrap</title>
    <style>
        div {
            text-align: right;
            white-space: pre-wrap;
            background-color: #ff9494;
        }
    </style>
</head>
<body>
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</div>
</body>
</html>

PDF results
Image

Same example with text-align: left;
Image

@liZe liZe added the bug Existing features not working as expected label Feb 17, 2025
@liZe
Copy link
Member

liZe commented Feb 17, 2025

Thanks for the bug report, there’s something wrong with this trailing space.

It may be related to #751.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Existing features not working as expected
Projects
None yet
Development

No branches or pull requests

2 participants