--- title: ':right' slug: 'Web/CSS/:right' translation_of: 'Web/CSS/:right' ---
The :right
CSS page pseudo-class matches any right page when printing a page. It allows you to describe the styling of right-side pages.
/* Selects the content on the right-hand pages while printing */ @page :right { margin: 2in 3in; }
Whether the page is left or right is decided by the major writing direction of the document. For example, if the first page has a major writing direction of left-to-right then it will be a :right
page and if it has a major writing direction of right-to-left then it will be a {{ Cssxref(":left") }}
page.
@page :right { margin: 2in 3in; }
Specification | Status | Comment |
---|---|---|
{{ SpecName('CSS3 Paged Media', '#left-right-first', ':right') }} | {{ Spec2('CSS3 Paged Media') }} | No change. |
{{ SpecName('CSS2.1', 'page.html#page-selectors', ':right') }} | {{ Spec2('CSS2.1') }} | Initial definition. |
{{ CompatibilityTable() }}
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | {{ CompatUnknown() }} | {{CompatVersionUnknown}} | {{ CompatNo() }} | 8.0 | 9.2 | {{ CompatUnknown() }} |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | {{ CompatUnknown() }} | {{CompatVersionUnknown}} | {{ CompatNo() }} | {{ CompatUnknown() }} | {{ CompatUnknown() }} | {{ CompatUnknown() }} |