Skip to main content

24 ways: Back To The Future of Print

Popularity Report

Total Popularity Score: 0

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Rank

Related Lists

Bookmark History

Saved by 10 people (1 private), first by anonymouse user on 2007-12-09


Public Sticky notes

Back To The Future of Print

Highlighted by kayarender

2. Linearise your content

Highlighted by om19bao

imply put serif-ed fonts such as Georgia work better on print

Highlighted by om19bao

ou will probably want to increase font size and line height and change from px to pt

Highlighted by om19bao

CSS:

  1. a:link:after,
  2. a:visited:after,
  3. a:hover:after,
  4. a:active:after {
  5. content: " <" attr(href) "> ";
  6. color: grey;
  7. font-style: italic;
  8. font-weight: normal;
  9. }
  10. a[href^="/"]:after {
  11. content: " <http://www.example.com"attr(href)"> ";
  12. }

Highlighted by om19bao

You will need to set {display: table-header-group;} explicitly for IE even though this should be the default value.

Highlighted by om19bao