size
Quick Summary for size (@page)
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Code Usage for size (@page)
/* Keyword values for scalable size */ size: auto; size: portrait; size: landscape;  /* <length> values */ /* 1 value: height = width */ size: 6in;  /* 2 values: width then height */ size: 4in 6in;  /* Keyword values for absolute size */ size: A4; size: B5; size: JIS-B4; size: letter;  /* Mixing size and orientation */ size: A4 portrait; 
More Details for size (@page)

size

Experimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.

The size CSS at-rule descriptor, used with the @page at-rule, defines the size and orientation of the box which is used to represent a page. Most of the time, this size corresponds to the target size of the printed page if applicable.

Size may either be defined with a "scalable" keyword (in this case the page will fill the available dimensions) or with absolute dimensions.

Syntax

/* Keyword values for scalable size */ size: auto; size: portrait; size: landscape;  /* <length> values */ /* 1 value: height = width */ size: 6in;  /* 2 values: width then height */ size: 4in 6in;  /* Keyword values for absolute size */ size: A4; size: B5; size: JIS-B4; size: letter;  /* Mixing size and orientation */ size: A4 portrait; 

Values

auto

The user agent decides the size of the page. In most cases, the dimensions and orientation of the target sheet are used.

landscape

The content of the page is displayed in landscape mode (i.e. the longest side of the box is horizontal).

portrait

The content of the page is displayed in portrait mode (i.e. the longest side of the box is vertical). This is the default orientation.

<length>

Any length value (see <length>). The first value corresponds to the width of the page box and the second one corresponds to its height. If only one value is provided, it is used for both width and height.

<page-size>

A keyword which may be any of the following values:

A5

This matches the standard, ISO dimensions: 148mm x 210mm.

A4

This matches the standard, ISO dimensions: 210mm x 297mm. (most frequently used dimensions for personal printing.)

A3

This matches the standard, ISO dimensions: 297mm x 420mm.

B5

This matches the standard, ISO dimensions: 176mm x 250mm.

B4

This matches the standard, ISO dimensions: 250mm x 353mm.

JIS-B5

This correspond to the JIS standard dimensions: 182mm x 257mm.

JIS-B4

This correspond to the JIS standard dimensions: 257mm x 364mm.

letter

This keyword is a equivalent to the dimensions of letter paper in North America i.e. 8.5in x 11in.

legal

This keyword is a equivalent to the dimensions of legal papers in North America i.e. 8.5in x 14in.

ledger

This keyword is a equivalent to the dimensions of ledger pages in North America i.e. 11in x 17in.

Formal definition

Related at-rule@page
Initial valueauto
Computed valueas specified, but with relative lengths converted into absolute lengths

Formal syntax

<length>{1,2} | auto | [ <page-size> || [ portrait | landscape ] ]

where <page-size> = A5 | A4 | A3 | B5 | B4 | JIS-B5 | JIS-B4 | letter | legal | ledger

Examples

Specifying size and orientation

@page {   size: 4in 6in landscape; } 

Nesting inside a @media rule

@media print {   @page {     size: 50mm 150mm;   } } 

Specifications

Specification
Proposals for the future of CSS Paged Media # page-size-prop

Last modified: Aug 12, 2021, by MDN contributors

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
In this case my anchor this week becomes driving almost 2hrs outside of Atlanta to one of my favorite hard core gyms in the world.. MetroFlex aka The Dungeon. The gym owners turn the heat way up so it becomes a fun sweat box and the gym members just watch from afar and leave me alone. I happily drive myself long distances to find MY ANCHOR. Our anchor allows us to have balance, focus and be as productive as possible. And if you're in the middle of a heavy set and your headphones start to fall off your head, like mine did here.. well.. f*ck the headphones. Let em break and fall. You can always get a new pair, but the iron ain't ever gonna lift itself.
Unknown
Random CSS Property

@viewport

Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
orientation (@viewport) css reference