15 lines
364 B
HTML
15 lines
364 B
HTML
<!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>
|