Questions tagged [printing-web-page]

Printing a web page either on paper or as a .PDF file, usually through the browser.

236 questions
3
votes
2 answers

printing from chrome missing lines

When I print from Chrome some lines are missing. When I export to a PDF file and then print the file from Acrobat there are no missing lines. With Chrome for any given web page it is always the same lines that are missing. No problem printing with…
user3478045
  • 31
  • 1
  • 3
3
votes
3 answers

Tableau: is there a clean way to print out an embedded visualization?

I've recently started embedding Tableau visualizations on websites and come across an issue with printing them with a straight Control + P in the browser. Most come out completely distorted, if at all. I did some digging and found that this is a…
Mike Zavarello
  • 3,514
  • 4
  • 29
  • 43
3
votes
1 answer

print a web page with inline css

I want to print an html table with inline style for particular cells. This is the image of the table. but when I print this web page out. the colors for those cells disappear. This is the image of the print preview. This is the code sample of the…
Kevin Bui
  • 2,754
  • 1
  • 14
  • 15
3
votes
2 answers

Printing horizontally scrolling content onto the next page - possible?

I've been unsuccessfully trying to print horizontally scrolling content. I've come to a point where I'm tired of searching and I think it's time to ask - So here goes, below is a really simplified version of the content I want to print - The…
neuDev33
  • 1,573
  • 7
  • 41
  • 54
2
votes
2 answers

how to print the gridview of page in require format

I have a gridview from database and the issue is i want to print the whole page when the user click the print button each row of gridview print in given format as 3 row on 1 A4 size page. gridview Printing format
Prakash Kumar Jha
  • 232
  • 2
  • 7
  • 16
2
votes
3 answers

To print the whole html page

I have a button and use window.print() to print the page , but it is printing only a singe page of what is visible in the viewport. However the page is long enough to fill 5 pages. How can I get it to print the whole page?
user1260967
  • 89
  • 1
  • 2
  • 14
2
votes
2 answers

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 know how to print page with all it's CSS formatting…
Amol Kolekar
  • 2,307
  • 5
  • 30
  • 45
2
votes
1 answer

ASP .NET: Page breaking when using multiple gridview in aspx page for printing

Here is the issue: We have a report with many gridviews in an aspx page. However, when we print them, they don't page correctly, as one would expect. I found a library that will create page breaks correctly within a single page break. But, yet…
hugoestr
2
votes
1 answer

table borders not visible on firefox print

I am building a printable table. And it works well on chrome. But on firefox , it doesn't show the table borders. …
Abraham
  • 12,140
  • 4
  • 56
  • 92
2
votes
1 answer

IE double printing issue

Ok...this is extremely weird. I have a form that's being printed by my client and in Firefox it's great! In chrome it's great! In IE...it prints the questions twice. From 13 to 26 pages. I can't figure it…
jerebear
  • 6,503
  • 4
  • 31
  • 38
2
votes
1 answer

Where can I find the specs for Printing Preferences for ChromeDriver/Selenium?

I have been able to find some preferences in ChromeOptions for printing, e.g. (in kotlin btw) val options = ChromeOptions() options.addArguments( "--window-size=1920,1200", "--kiosk-printing" …
2
votes
1 answer

How to use custom output formats to create a printer-friendly template in hugo

I would like to be able to define an HTML template that is optimized for printing. It would seem that Hugo custom output formats is exactly what I need but I am struggling to understand how to make it work. Here is an excerpt from the config.yaml…
ra9r
  • 4,528
  • 4
  • 42
  • 52
2
votes
0 answers

Angular 4 printing a modal window

I want to print a modal window with data that I get from a service. So far I have read about some CSS methods that hide other elements on @media print, but I have not quite understand how or where to use this. Anyone has had any experience printing…
V. Benavides
  • 533
  • 1
  • 7
  • 21
2
votes
1 answer

Margins for body on each page (print)

Is there a solution for setting the margin-top, margin-bottom in print view for each view of a printed page? I have tried with @page or by setting the margin in body {} but it does not seem to be working. (it sets margin-top just for the first…
IceWhisper
  • 807
  • 1
  • 11
  • 20
2
votes
0 answers

HTML: Printing Large Tables

I am printing a large table which is 100 rows x 100 columns, however it doesn't automatically page-break. What I wanted to happen is to format the print output displaying the complete columns and with its defined width and font size. I managed to…
Aaron Alfonso
  • 516
  • 1
  • 8
  • 27
OneOneOne