blob: 4be937f86795420fd52d5fe9f2253314d14e80fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html class="reftest-print">
<body>
Something
<div>
<div style="width: 60%; float: left; border: 5px solid green;">
This should print on page 1
</div>
<!-- This just needs to be taller than a page -->
<div style="width: 30%; float: right; border: 5px solid purple; height: 3in">
</div>
<!-- This is needed! -->
<div style="clear: both"></div>
</body>
</html>
|