Results 1 to 3 of 3

Thread: For all the CSS geniuses

  1. For all the CSS geniuses

    I know how to keep an element from being displayed for print. Now, how would one go about creating an element that displays only for print?

  2. I think this will do it. Not sure, never tried it.

    http://evolt.org/article/comment/20/22225/

  3. Read that already -- nice bit of theory, but that's about all. Fortunately a fellow at devshack was able to hook me up with this nugget:

    Code:
    @media screen {
    	.printonly {
    		display: none;
    	}
    }
    @media print {
    	.printonly {
    		display: block;
    	}
    }

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Games.com logo