Tagged Questions

9
votes
4answers
484 views

Alternative for page-break-inside: avoid

I have a page which generates coupons. Each coupon is a div with a height varying depending on the content. I want to print as many coupons on each page as possible, but I do not want the coupons to ...
6
votes
1answer
867 views

page-break-inside:avoid equivalent for Firefox and/or IE

I understand that the CSS page-break-inside:avoid instruction is supposed to prevent a page break within a div when an HTML document is printed. Through searching the internet, I have found that it is ...
5
votes
1answer
314 views

Keep contents of a div together for printing in IE8

Given the following HTML document, I need to keep the "Table title" line on the same page as the <table> when being printed in IE8. Despite the page-break-inside:avoid;, there is still a page ...
4
votes
2answers
762 views

Scroll bars showing on printed page in IE9?

I'm having an issue with IE9 showing horizontal scroll bars on a printed page even though the contents of the page fit entirely. I've tried several things to remove them in my print css. Has anyone ...
3
votes
1answer
71 views

How do you shrink contents to fit a div?

I am on a project and I have been assigned the task of modifying a report page to make it printable. The report uses PHP to generate tables within divs, but the divs are sometimes greater than 1 page ...
3
votes
4answers
2k views

Using CSS and/or jQuery for Printed Pages with Page Breaks

I have a dynamically generated html page which is designed to be printed. I would like to create page breaks based upon div sections - where any given div - if it DOES NOT fully fit on the page, ...
3
votes
2answers
808 views

Enforce Print Page Breaks with CSS

I have a page that basically displays all work orders for a given day. I have tried to create the HTML so that I can use page-break-after: always to create a logical print page break and continue on. ...
3
votes
3answers
2k views

page-break-inside: avoid;

I have alot of divs on a page with variable amounts of content in them. I am trying to use page-break-inside: avoid; so that each div section is not broken over 2 pages. It is working in firefox ...
2
votes
1answer
51 views

How to print a page along with all CSS formatting

I am doing a print functionality. The problem I am getting is that the page, which is being printed, is not retaining it's CSS formatting. I am getting plain text on print without CSS. Does anyone ...
2
votes
2answers
226 views

HTML, printable hyperlink references, like table of contents

A link in an HTML document is normally clickable. However, on a printed page, that feature is by natural causes not available. <a href="#foo">Link to foo</a> [... loads of content ...] ...
2
votes
3answers
2k views

Print Stylesheets for pages with long horizontal tables

I have a page that spits out db data in long horizontal tables. I need to print it nicely so it does not cut off. Any tips ?
1
vote
1answer
64 views

html2ps - How do I print small labels?

I've been working with html2ps to get some text only labels to print correctly on a Dymo 450 Labelwriter printer. According to this page you should be able to resize the page using CSS. Here's the ...
1
vote
2answers
111 views

Printing a html page - page breaking

I have a page which has a bunch of divs one after the other, generated by a loop, all having the same class, and all the divs contain images and text. I need to style this page for printing. I have ...
1
vote
2answers
53 views

using css pagestyle is there a way to columnize the result?

I'm trying to make a webpage that will display normally in a browser, but when printed will print using 2 columns per page. Is there a way to get the text to flow from the left to right column, and ...
1
vote
2answers
192 views

How to hide all buttons in IE6 without hiding all inputs in a printing stylesheet?

Whats the easiest method of hiding all buttons but not all inputs (say drop down lists, text input boxes) in CSS that works with IE6. The purpose of this CSS file is for printing (using the ...
0
votes
1answer
24 views

css printing issue in Firefox and IE

I'm trying to print the page http://www.calibredesign.com/clients/spec/index.html?view=t_fabr.html (under the link graded fabric ArcCom in IE and Firefox. However, it's only print the first page ...
0
votes
3answers
456 views

CSS media print background image

I want to print a watermark/background image on the print document. The watermark/background image would not be visible on screen.
0
votes
4answers
53 views

how do I make an element in a webpage not be printed?

I've made a simple "print version" for the entries in our company website. However, I am required to add a button/link for going back to the website, since, allegedly, many of our customers wouldn't ...
0
votes
1answer
70 views

Maintaining print CSS stylesheet files

How do you usually handle changes to screen and print CSS files? I typically have one screen CSS and one print CSS file and for the most part the I would copy the contents of screen CSS to print CSS ...
0
votes
3answers
353 views

pt or px for specifying border-width for print

should i use pt or px when specifying border-width in css for media print? i basically just want hairlines
0
votes
2answers
764 views

add header when page breaks when using page-break-inside: avoid wth css or javascript or from browser?

i have a page that has sections as divs with inner divs and content. The numberof divs varies alot from less than a page to many pages when printing. I am using page-break-inside: avoid on every ...
0
votes
3answers
535 views

Printing Scrolled Divs

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. However, when ...