garden icon indicating copy to clipboard operation
garden copied to clipboard

Add support for paged media with @page at-rule

Open prestancedesign opened this issue 8 months ago • 0 comments

Hi,

I contribute with this PR to add @page at-rule syntax: https://developer.mozilla.org/en-US/docs/Web/CSS/@page

Firstly, this adds support for this specific case:

@page {
  /* margin box at top right showing page number */
  @top-right {
    content: "Page " counter(pageNumber);
  }
}

If interested, I'll also add the support of pseudo-classes.

/* Targets all even-numbered pages */
@page :left {
  margin-top: 4in;
}

Best regards. Mike

prestancedesign avatar Dec 19 '23 22:12 prestancedesign