flyingsaucerproject / flyingsaucer

XML/XHTML and CSS 2.1 renderer in pure Java
Other
1.97k stars 553 forks source link

text-align: justify; Underline missing #342

Open meloht opened 1 month ago

meloht commented 1 month ago
<html>
<head>
    <meta charset="UTF-8"/>

    <style>
        @page {
            counter-increment: page;
            size: A4 portrait;
            margin-left: 64px;
            margin-right: 64px;

        }

        div.content {
            display: block;
            font-family: Arial, sans-serif;

            text-align: justify;
        }

    </style>
</head>
<body>
<div class="content">
    <p>
        <strong ><u>NOTICE OF ASSESSMENT ISSUED TO REGULATION OF THE SKILLS
            DEVELOPMENT DEVELOPMENT DEVELOPMENT</u></strong>
    </p>

</div>
</body>
</html> 

image