scaleX() function
Specifies a scale operation by using the [sx,1] scaling vector, where sx is given as the parameter.
![]() ![]() |
Syntax
scaleX
(
<scaling-value>
)
Parameters
- scaling-value
-
Numerical value by which to scale the specified element in the x-direction.
Standards information
- CSS Transforms Module, Level 3, Section 13.1
Examples
The following code snippet is an example of the scaleX function in use. When applied to a square blue div element, it has the effect illustrated in the image. (The light-blue square indicates the original position of the transformed element.)
div {
transform: scaleX(0.65);
}

Requirements
See also
Show:

