css for printabily pages

by 2 replies
3
hi bros i want a css for print pages ?
#programming #css #pages #printabily
  • Not sure what you're looking for, exactly. Does this help: CSS Reference
  • you need this in your existing css file
    Code:
    @media print {   /* style sheet for print goes here */ }
    or this
    Code:
    <LINK REL="stylesheet" TYPE="text/css"       MEDIA="print" HREF="print.css" />
    What I did in my projects was to hide lots of elements that don't need to appear in the printed version e.g. social networking buttons, contact forms etc.

    How to test it ?

    I used CutePDF and make the browser print the page into the virtual printer that CutePDF creates. Of course there could be a better way for sure.
    • [ 1 ] Thanks

Next Topics on Trending Feed