scale()
Quick Summary for scale()
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.
Code Usage for scale()
scale(sx)  scale(sx, sy) 
More Details for scale()

scale()

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.

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. If it is negative, the result a point reflection in that dimension. A value of 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.

scale(sx)  scale(sx, sy) 

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.

Cartesian coordinates on ℝ^2 Homogeneous coordinates on ℝℙ^2 Cartesian coordinates on ℝ^3 Homogeneous coordinates on ℝℙ^3
( sx 0 0 sy ) ( sx 0 0 0 sy 0 0 0 1 ) ( sx 0 0 0 sy 0 0 0 1 ) ( sx 0 0 0 0 sy 0 0 0 0 1 0 0 0 0 1 )
[sx 0 0 sy 0 0]

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
CSS Transforms Module Level 1 # funcdef-transform-scale

See also

transform <transform-function> scale3d() Select your preferred language English (US)EspañolFrançais日本語Português (do Brasil)中文 (简体) Change language

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
"Let us prepare our minds as if we'd come to the very end of life. Let us postpone nothing. Let us balance life's books each day ... The one who puts the finishing touches on their life each day is never short of time."
Seneca
Random CSS Property

mask

The mask CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.
mask css reference