简体   繁体   English

您可以将托管在 localhost 中的网站下载为 PDF 吗?

[英]Can you download a website hosted in localhost as a PDF?

I am building my CV on a website but don't want to host it online yet.我正在网站上构建我的简历,但还不想在线托管。 I just graduated and want to send my CV to some companies but how can I download the webpage with the CSS and all the UI I've made in pdf?我刚毕业,想把我的简历发给一些公司,但是如何下载带有 CSS 的网页以及我在 pdf 中制作的所有 UI?

somehow it wont detect css.不知何故,它不会检测到 css。

any help?有什么帮助吗?

You can print the page by right-clicking on the page, then save page as pdf.您可以通过右键单击页面来打印页面,然后将页面另存为 pdf。

You can also alter your css so it looks different when you print it as pdf like this您还可以更改您的 css,这样当您将其打印为 pdf 时,它看起来会有所不同

 @media print {
    body {
        background-color: white;
        font-family: none;
    }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM