Вопрос

Object: Communication site with standard modern pages with combinations of text and images.

I would like to find a way to 'save' the content or print it.

I have tried to print and the result is not optimal at times since the web page does not adapt to A4 sheets. I have tried to Print to XPS and print to PDF and it is the same. I am talking about around 50 pages of articles that I would like to 'save'.

Is there a way other than taking screenshots of every portion?

Нет правильного решения

Другие советы

The best-practice way to optimise a web page for print formats is to specify style rules for that medium in the global stylesheets of an application.

The gist being, somewhere in the stylesheet you should have a section like the following:

@media print {
    header nav, footer {
        display: none;
    }
}

which would be used when you used a browser's Print function to send a document to a physical printer or PDF renderer. Assuming the correct use of those elements, it would render the article without the site's navigation items nor the footer.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с sharepoint.stackexchange
scroll top