Tagged Questions
9
votes
4answers
487 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
869 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
316 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 ...
5
votes
6answers
3k views
Printing only a textarea
I would like to print only the contents of a textarea element from a website page. In particular, I would like to ensure that nothing gets clipped by the boundary of the textarea as the contents will ...
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
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 ...
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
112 views
execute javascript when printing page
when printing a page, the javascript code seems to be executed.
how can I determine, if the page is currently being printed? I do some js-resizing, and have to handle printing a little bit different.
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
1answer
77 views
Printing Data inside a div
I have a lot of DIVs having some data in my web page & I want to print a data of a specific div by using "window.print()" without opening any popup. What should I do?
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
0answers
72 views
Style information is lost when printing webpage?
I've set the media to all, but when printing a page and clicking "preview" much of the style information is missing. Any idea why?
1
vote
1answer
397 views
Web based printing from a Django application?
Is there any recent developments in web based printing?
I know using @media print in CSS, PDF based solution or iTextSharp but they are not really easy (except @media print) but alignment is little ...
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
94 views
Print section of page script works perfectly in IE but problems in Firefox
In my battles to find a solution to printing just one area of the page that works within WordPress, I came across an excellent little script that meets my needs perfectly.. but only in IE browser. For ...
0
votes
2answers
221 views
Printing a web page to POS Printer
Does anyone know if it is possible to print from HTML to a Espon Pos Printer?
Can it be done in active x?
I created the application to work with regular printers and not the department wants a pos ...
0
votes
1answer
76 views
print modified web page without displaying it
I'm trying to implement "print this page" on an e-commerce product page. It will be without needless sections like top navigation, footer, add to cart button etc. I want it to work like target.com
...
0
votes
1answer
333 views
What is the best browser printing library, plugin, or snippet for javascript / jquery?
I'm trying to print a section of a web page and there are multiple css files, and several of those files contribute to the "print" media type. Some of the plugins I've seen assume that you only have ...
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
2answers
805 views
Fake the src of an iframe for printing to avoid “about:blank”
I'm creating a hidden iframe specifically to be used for printing in IE6.
Here's a basic outline of the code with some HTML population cut out:
$('body').append('<iframe ...
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
4answers
3k views
Hide header and footer while printing a webcontrol using ASP.NET
How can I hide the header like 'Page 1 of 1' and footer (url) when printing a webcontol in ASP.NET?
I currently doing by opening a new page on Print button click ande in it
protected void ...