blob: 5cd8dc37d32d2bf7422476b7479dafb54b16b2a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<link href="print.css" rel="stylesheet">
<style>
.test {
font-size: 50px;
height: 2em;
}
</style>
</head>
<p>Some text</p>
<p class=test><!-- This will not be visible in the print output,
unless backgrounds are explicitly enabled. --></p>
<p>More text after the test</p>
|