Print Style Sheets

Resume Example

Previewing

This is a cumbersome process. May require lots of refreshing without cache. View results with:

  • Save as PDF

  • Dev Tools Print emulator

Nest CSS rules in inside of media query.

@media print {...}

Hiding Content

... {
display: none
}

Showing URLs


a[href]::after {
    content: " " attr(href); 
}

Columns

// text columns
... {
columns: 2
}

Hyphenation

...{
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}

Widows and Orphans

... {
widows: 0;
orphans: 0;
}

@page

// Set printing margins
@page {
    margin: 0;
}

References

Last updated