I am printing a bunch of form letters to a web page. Then the user can then inspect the output and print it. I have already included a div to force pagebreaks. Here is the div~
<div style="page-break-before:always">
text text text
</div>
I did this WITHOUT defining a css in the page head. I was pleasantly surprised when it worked without that.
Now, when I actually print the web page, the output has a page number in the header. It also has the url and a date in the footer. I want to suppress those things. Do I need to make a real CSS to do that? If I do need a CSS, can you give me some hints on syntax?
<div style="page-break-before:always">
text text text
</div>
I did this WITHOUT defining a css in the page head. I was pleasantly surprised when it worked without that.
Now, when I actually print the web page, the output has a page number in the header. It also has the url and a date in the footer. I want to suppress those things. Do I need to make a real CSS to do that? If I do need a CSS, can you give me some hints on syntax?