Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

@page :first { margin: ... } in Chrome bug?

Referring to the full fiddle at: http://jsfiddle.net/XT92a/

@page {
    margin: 1in;
}

@page :first {
    margin: 2in 1in 3in 3in;
}

I expect the above rule to make the first printed page have certain margins and all other pages have 1 inch margins.

Instead, I get the following in Chrome's print preview (accurate to the printed output). The margins are different on the non-first pages, but they are not correct. Commenting out the :first margin rule allows the non-first pages to print with the correct layout, but of course, the first page is also affected.

Mozilla's documentation seems to me to claim that Chrome supports this properly. And clearly Chrome reacts, but not correctly. I'd reference Chrome documentation if I could, but Google sucks at documentation! (Is there a google equivalent of the MDN? I can't find it.)

It's strange to me that I can't find mention of this problem elsewhere, if Chrome should have supported this since version 2.0 and that print layouts are such a huge PITA.

Am I doing it wrong? Is there a robust workaround? I've tried @page:first (no space), setting margin values independently trbl style and individually, and swapped the order of the rules in the style declarations. No effect.

enter image description here

like image 629
Jason Kleban Avatar asked Dec 21 '12 18:12

Jason Kleban


People also ask

What is the default printing margin?

The default print margins in Microsoft Excel are 0.75 inches on the left and right sides, and 1 inch on the top and bottom.


1 Answers

You stated:

Mozilla's documentation seems to me to claim that Chrome supports this properly.

True, but the :first CSS pseudo-class shows unknown support from Chrome ("Unknown support. Please update this."

Also, there are many print preview issues with Chrome and I stumbled across some that sounded similar to this problem such as this one. Nevertheless, I could find no work arounds. Just so you are aware in your own testing I tried:

  • negative margins
  • padding rather than margins
  • large borders to simulate margins
  • forced page breaks (possible hack solution)
  • explicit width and height
  • !important

I performed a lot of testing and Chrome appears to ignore or improperly implement the CSS rules when generating the preview PDF file. Personally, from my testing results, I think this is a bug.

Update

  • Firefox v17.0.1 - Does not apply @page rules at all.
  • Chrome 23.0.1271.97 m - incorrectly applies the :first pseudo class on all pages.
  • IE 9.0.8112.16421 - performs the same misapplication of rules as Chrome

My findings coincide with the browser compatibility chart on the :first pseudo class page. That is, an unknown compatibility for Chrome and a "not supported" compatibility for Firefox. I was unable to test IE8, but my test with IE9 does not support the chart's claim. Even Microsoft's examples fail to render correctly (CSS How-to: Optimize Pages for Printing Using CSS).

:first Browser compatibility

After more testing, I can only conclude that @page hasn't been completely integrated into most browsers. The specifications are present (there are new specs. for CSS3) but based on our tests, the lack of tested examples in articles, and the bug reports it looks like you won't be able to successfully use the more flexible specs of the @page styling.

like image 86
JSuar Avatar answered Oct 22 '22 21:10

JSuar