WeasyPrint icon indicating copy to clipboard operation
WeasyPrint copied to clipboard

Word breaking with nested spans bug

Open survtur opened this issue 1 year ago • 1 comments

That long word breaks if i wrap it into additional span. Tested on Weasy 61.2

image

<body style="  word-wrap: break-word">
<div style="width: 20em; background-color: #fafaff">
    <em>
        some text
        <span style='color: red'>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx yyyyyyyyy</span>
        zzzz wwwwwwwwwwwww
        aaaaaa
    </em>
</div>
<br/><br/>
<div style="width: 20em; background-color: #fafaff">
    <em>
        some text
        xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx yyyyyyyyy
        zzzz wwwwwwwwwwwww
        aaaaaa
    </em>
</div>
</body>

survtur avatar Mar 19 '24 13:03 survtur

Maybe related to #1614.

liZe avatar Sep 27 '24 17:09 liZe