Scaling refers to shrinking or stretching printed output to a percentage of its actual size.

Automatically scale to fit paper

Acrobat can size the pages of a PDF to fit the selected paper size.

  1. From the Page Scaling pop-up menu, select one of the following options:
    Fit To Printable Area  Scales small pages up and large pages down to fit the paper.
    Shrink To Printable Area  Resizes only large pages to fit the paper and prints small pages as they are.

    Scaling refers to shrinking or stretching printed output to a percentage of its actual size.

Tip: (Acrobat only, not Adobe Reader) You can set up a PDF to default to specific scaling or print options. Choose File > Properties, and click the Advanced tab. Select options for the Print Dialog Presets. The Default option in the Page Scaling pop-up menu is Shrink To Printable Area. Save the file to apply the new defaults. For more information, see Print Dialog Presets in Acrobat Help.

Manually scale using percentages

Not available in Adobe Reader 9: Scale using the preset scale options in Adobe Reader 9 or earlier.

You can magnify or reduce a PDF by an exact percentage. 

  1. From the Page Scaling pop-up menu, select Tile All Pages to expose the Tile Scale % option.
    Note: If the tile options are not in the menu, make sure that the following options are not selected in the Advanced Print dialog box: Print as Image or, for Acrobat only, Separations or In-RIP Separations.

  2. For Tile Scale, type the percentage you want to magnify or reduce the PDF. Click any other option to refresh the preview on the right.

    Scaling refers to shrinking or stretching printed output to a percentage of its actual size.

Scaling refers to shrinking or stretching printed output to a percentage of its actual size.

How to Adjust Page Size and Scale in Excel

Scaling refers to shrinking or stretching printed output to a percentage of its actual size.

If you plan to print a worksheet on paper that isn’t letter size, you’ll need to select a different paper size in Excel. You can choose to adjust the scale of your printed worksheet so that the printed data stretches or shrinks to fit the number of pages you specify.

Change Page Size

Most people normally print on standard letter-sized (8.5” x 11”) paper, but Excel can print on many other paper sizes.

  1. Click the Page Layout tab.
  2. Click the Size button.
  3. Select a page size.

    If you don’t see the paper size you need, select More Paper Sizes.

    Scaling refers to shrinking or stretching printed output to a percentage of its actual size.

Change Print Scale

If you have a data range that’s too wide or tall for a page, scale it to ensure it fits correctly.

  1. Click the Page Layout tab.
  2. Click the Scale to Fit dialog box launcher.

    Scaling refers to shrinking or stretching printed output to a percentage of its actual size.

    The Scaling section has two options you can choose from to adjust the worksheet’s scale for printing:

    • Adjust to: Enter a percentage or use the arrow buttons to stretch or shrink the printed output to a percentage of its actual size.
    • Fit to: Specify the number of pages wide and tall you want the printed data to occupy. Excel will either shrink the data to fit on fewer pages or expand it to fill additional pages.
  3. Specify the scaling options you want to use.
  4. Click OK.

    Scaling refers to shrinking or stretching printed output to a percentage of its actual size.

Scaling refers to shrinking or stretching printed output to a percentage of its actual size.

FREE Quick Reference

Click to Download

Free to distribute with our compliments; we hope you will consider our paid training.

The scale() CSS function defines a transformation that resizes an element on the 2D plane. Because the amount of scaling is defined by a vector, it can resize the horizontal and vertical dimensions at different scales. Its result is a <transform-function> data type.

Try it

This scaling transformation is characterized by a two-dimensional vector. Its coordinates define how much scaling is done in each direction. If both coordinates are equal, the scaling is uniform (isotropic) and the aspect ratio of the element is preserved (this is a homothetic transformation).

When a coordinate value is outside the [-1, 1] range, the element grows along that dimension; when inside, it shrinks. A negative value results in a point reflection in that dimension. The value 1 has no effect.

Note: The scale() function only scales in 2D. To scale in 3D, use scale3d() instead.

Syntax

The scale() function is specified with either one or two values, which represent the amount of scaling to be applied in each direction.

Values

sx

A <number> or <percentage> representing the abscissa of the scaling vector.

sy

A <number> or <percentage> representing the ordinate of the scaling vector. If not defined, its default value is sx, resulting in a uniform scaling that preserves the element's aspect ratio.

Accessibility concerns

Scaling/zooming animations are problematic for accessibility, as they are a common trigger for certain types of migraine. If you need to include such animations on your website, you should provide a control to allow users to turn off animations, preferably site-wide.

Also, consider making use of the prefers-reduced-motion media feature — use it to write a media query that will turn off animations if the user has reduced animation specified in their system preferences.

Find out more:

  • MDN Understanding WCAG, Guideline 2.3 explanations
  • Understanding Success Criterion 2.3.3 | W3C Understanding WCAG 2.1

Examples

Scaling the X and Y dimensions together

HTML

<div>Normal</div>
<div class="scaled">Scaled</div>

CSS

div {
  width: 80px;
  height: 80px;
  background-color: skyblue;
}

.scaled {
  transform: scale(0.7); /* Equal to scaleX(0.7) scaleY(0.7) */
  background-color: pink;
}

Result

Scaling X and Y dimensions separately, and translating the origin

HTML

<div>Normal</div>
<div class="scaled">Scaled</div>

CSS

div {
  width: 80px;
  height: 80px;
  background-color: skyblue;
}

.scaled {
  transform: scale(2, 0.5); /* Equal to scaleX(2) scaleY(0.5) */
  transform-origin: left;
  background-color: pink;
}

Result

Specifications

Specification
Unknown specification
# funcdef-transform-scale

Browser compatibility

BCD tables only load in the browser

See also

What refers to shrinking or stretching printed output to a percentage of its actual size?

Scaling. [ ] refers to shrinking or stretching printed output to a percentage of its actual size.

How do you increase or decrease a column's width?

Select a column or a range of columns. On the Home tab, select Format > Column Width (or Column Height). Type the column width and select OK.

Is a line of text that appears at the top of each page of a printed worksheet?

A header is a line of text that appears at the top of each page of a printed worksheet. You can change the orientation of a worksheet, which is the position of the content, so that it prints either vertically or horizontally on a page.

In which of the following locations can you select to view or print gridlines?

On the Page Layout tab, in the Sheet Options group, select the Print check box under Gridlines. Note: If the check boxes in the Sheet Options group appear dimmed, it may be because you have a chart, image, or other object selected on the worksheet. If you cancel that selection, you'll be able to use the check boxes.