CSS @right-top At-Rule

The CSS @right-top at-rule is used to style the right-top page-margin box in paged media.

The right-top page-margin box is a variable-height box filling the right page margin between the top-right-corner and right-middle page-margin boxes.

Diagram of the right-top page-margin box highlighted within the page context
Diagram of the page box, with the right-top page-margin box highlighted.

The @right-top rule is one of 16 margin at-rules that can be used inside the @page at-rule when working with paged media (e.g. printed paper, transparencies, photo albums, a browser's "Print Preview" function).

The margin at-rules are responsible for styling the 16 page-margin boxes inside the page context. These page-margin boxes allow you to add generated content and styles around the outside of the page box. This can be useful for generating headers and footers that contain the document title, page numbers, etc.

The @right-top at-rule allows you to apply styles and generated content specifically to the right-top page-margin box.

Each page-margin box has its own margin, border, padding and content areas. You can adjust these properties as required.

Official Syntax

Here's the official syntax for the @right-top at-rule:

What this means is that it accepts a list of normal CSS declarations inserted between curly brackets (just like any other CSS declaration).

However, there are some properties that can't be used with @right-top (or any other margin at-rule). Margin at-rules can only accept page-margin properties.

Example

Here's a basic code example:

This example first sets the page size and margin for the page context. It then uses the @right-top rule to identify the page-margin box at the right top, and generate the page number, preceded by the text "Page ".

Notice that the @right-top rule is nested inside the @page rule. This is because margin-at rules go inside the page context (which is created by the @page at-rule). The page-margin boxes are themselves said to be in the margin context.

Also notice that the @right-top rule follows the declarations in the page context. This is recommended to ensure that legacy clients handle the declarations correctly.

Page Orientation

It doesn't matter whether you're printing a page in landscape or portrait orientation. The page-margin boxes are independent of page orientation.

Therefore, right-top is in the same position in both portrait and landscape orientation.

Default Alignment

By default, the alignment on the right-top page-margin box is set to:

However, you can use the text-align and vertical-align properties to change this if required.

Page-Margin Properties

Not all CSS properties will work on page-margin boxes, but there is a large list of properties that can be used on any page-margin box.

Supported properties include properties for specifying backgrounds, colors, alignment, generated content, text direction, and more.

Here's a list of page-margin properties that are applicable to page-margin boxes.

Official Specifications