-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Description
Try this simple html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Paper-Muncher Margin Test</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px; /* Page margin */
}
/* Block element centered */
.centered-box {
width: 200px;
height: 100px;
background-color: lightblue;
margin: auto; /* Should center horizontally */
text-align: center;
line-height: 100px;
}
</style>
</head>
<body>
<h1>Margin Auto Test</h1>
<div class="centered-box">
Centered Box
</div>
</body>
</html>
This would generate a centered box, while the pdf ignores the text-alignment:

Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels