Skip to main content
CSS-Tricks
  • Articles
  • Notes
  • Links
  • Guides
  • Almanac
  • Picks
  • Shuffle
Search

Articles Tagged
print stylesheet

5 Articles
Direct link to the article Can you view print stylesheets applied directly in the browser?
print stylesheet

Can you view print stylesheets applied directly in the browser?

Yep.

Let’s take a look at how to do it in different browsers. Although note the date of this blog post. This stuff tends to change over time, so if anything here is wrong, let us know and we can …

Chris Coyier on Aug 19, 2019
Direct link to the article Print URL After Links
print stylesheet

Print URL After Links

@media print { a::after{ content: " (" attr(href) ") "; } }
…
Chris Coyier on Aug 15, 2019
Direct link to the article Don’t Rely on Background Colors Printing
print stylesheet

Don’t Rely on Background Colors Printing

At work I recently rolled out a new system for one of our clients, the Rick Wilcox Magic Theater. Their site is largely informational about them and their show, and a portal for selling tickets to their show online. …

Chris Coyier on Aug 15, 2019
Direct link to the article #52: Building a Print Stylesheet
print stylesheet

#52: Building a Print Stylesheet

My technique for building print stylesheets goes like this. 1) Start from scratch 2) Leave most defaults alone 2) Eliminate every thing on the page you don’t need with display: none; 4) Put page-breaks where appropriate. Of course, I spend …

Chris Coyier on Dec 17, 2021
Direct link to the article CSS-Tricks Finally Gets A Print Stylesheet
print stylesheet

CSS-Tricks Finally Gets A Print Stylesheet

This is way past due…but it’s finally here: a print stylesheet!

I’ll start by showing you the entire stylesheet, then I’ll explain a little bit about what I was thinking.

body {	font-family: Georgia, serif;	background: none;	color: black; } 
…
Chris Coyier on Aug 15, 2019

CSS-Tricks is powered by DigitalOcean.

Keep up to date on web dev

with our hand-crafted newsletter

DigitalOcean
  • About DO
  • Cloudways
  • Legal stuff
  • Get free credit!
CSS-Tricks
  • Contact
  • Write for CSS-Tricks!
  • Advertise with us
Social
  • RSS Feeds
  • CodePen
  • Mastodon
  • Bluesky
Back to Top