Is there any way to retrieve the CSS styles used by Google Chrome when generating print preview, and printing pages?
The goal of this question is to remove the page URL at the bottom-left of the page, but I'd also remove the entire header also.
Somewhere, on a forum, I have found this snippet
@media print {
@page {
@top-left-corner {content:"";}
@top-left {content:"";}
@top-center {content:"";}
@top-right {content:"";}
@top-right-corner {content:"";}
@bottom-left-corner {content:"";}
@bottom-left {content:"";}
@bottom-center {content:"";}
@bottom-right {content:"";}
@bottom-right-corner {content:"";}
}
}
However it does not seem to work.
Is it possible to modify Google Chrome's generated print document through CSS?