Printing Scrolled Divs - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T07:41:48Z http://stackoverflow.com/feeds/question/236630 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/236630/printing-scrolled-divs 0 Printing Scrolled Divs Andrew Davey 2008-10-25T16:16:23Z 2008-10-25T19:14:02Z <p>I have a web page that displays a long line graph inside a div with overflow-x: scroll. This works well as a web page allowing the use to scroll back and forward through the graph.</p> <p>However, when printing the page the scroll position is reset to zero. Is there a way to overcome this?</p> http://stackoverflow.com/questions/236630/printing-scrolled-divs/236641#236641 2 Answer by Michael Stum for Printing Scrolled Divs Michael Stum 2008-10-25T16:22:06Z 2008-10-25T16:22:06Z <p>I think you're going to have to specify an alternate CSS for printing where you somehow need to remove the overflow:</p> <pre><code>&lt;link rel="stylesheet" type="text/css” href="sheet.css" media="print" /&gt; </code></pre> <p>However, maybe there is an approach with JavaScript or even Flash? If I understand correctly, you only want to have a part of the graph printed (the one "selected" by the user?) and not the full one? I'm pretty sure that's not possible with plain HTML/CSS, but I strongly believe that Flash or maybe JavaScript/AJAX (to only load a part of the image at a time) can solve it.</p> http://stackoverflow.com/questions/236630/printing-scrolled-divs/236690#236690 0 Answer by domgblackwell for Printing Scrolled Divs domgblackwell 2008-10-25T16:59:03Z 2008-10-25T16:59:03Z <p>A simple approach would be to have some javascript which posts back to your page with the user's selected scroll position on a link saying something like 'setup for printing'. Then the server side returns a page with the graph relatively positioned at the scroll position with <code>overflow:hidden</code> to clip the graph appropriately.</p> <p>Of course this would not work for users with javascript disabled - if you want to support this you would need the user to specify the scroll position in something like a text input element and submit button which you hid with javascript when enabled. </p> http://stackoverflow.com/questions/236630/printing-scrolled-divs/236862#236862 1 Answer by joelhardi for Printing Scrolled Divs joelhardi 2008-10-25T19:14:02Z 2008-10-25T19:14:02Z <p>You can't do this in plain CSS -- you will have to reimplement the scrolling using your Javascript UI library of choice to get what you want.</p> <p>The user state of the scrollbar isn't used when printing (think about it, if you're scrolled 3 screens down a page and hit "print" does it make sense for the browser to only print the part of the document that's in your window at the time?). However, if you use JS, which actually manipulates the DOM (i.e. sets the x-position offset to -293 if the person has scrolled right 293 pixels, just like <code>style="left: -293px; overflow: hidden;"</code> in CSS), then it will show up as such in printed documents.</p> <p>My suggestion is, unless the graphs are <em>very</em> wide, just skip all of this nonsense and use a printer stylesheet with <code>width: 100%</code> for the graph's <code>&lt;div&gt;</code> so the graph just shrinks to page width.</p>