18 lines
229 B
HTML
18 lines
229 B
HTML
<!DOCTYPE html>
|
|
|
|
<style>
|
|
:root {
|
|
print-color-adjust: exact;
|
|
}
|
|
html {
|
|
background-color: lime;
|
|
}
|
|
|
|
@page {
|
|
margin: 0px;
|
|
}
|
|
</style>
|
|
|
|
<p>
|
|
Should print on a green background but not display it on screen.
|
|
</p>
|