mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
271 B
HTML
21 lines
271 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Test of page-break-after</title>
|
||
|
<style>
|
||
|
P {page-break-after :always}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>
|
||
|
This test attempts to use CSS2's page-break-after. This should create 3 pages when printed.<br>
|
||
|
Page 1
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
Page 2
|
||
|
</p>
|
||
|
Page 3
|
||
|
</body>
|
||
|
</html>
|
||
|
|