简体   繁体   中英

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?

somehow it wont detect css.

any help?

You can print the page by right-clicking on the page, then save page as pdf.

You can also alter your css so it looks different when you print it as pdf like this

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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