'Disable HTML 3.2 headers and footers

There are many answers explaining how to disable headers and footers in HTML5 and CSS3:

<style type="text/css" media="print">
      @page {
        size: auto;
        margin: 0mm;
      }

I would need the same but for HTML 3.2 / CSS1 and I cant find if there is a way to do it.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source