1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description"
content="The page should break after the first red box, and not split the
second box">
<style>
@page {
size: 400pt 300pt;
margin: 50pt;
}
body {
outline: thin solid rgb(0, 0, 0, 0.25);
}
.block {
margin-bottom: 20pt;
outline: 2pt solid red;
}
.block div {
height: 140pt;
background-color: lightblue;
page-break-inside: avoid;
}
.padding {
padding-top: 20pt;
}
</style>
</head>
<body>
<div class="block">
<div></div>
</div>
<div class="block padding">
<div></div>
</div>
</body>
</html>
|