VOOZH about

URL: https://www.geeksforgeeks.org/css/css-scale-function/

⇱ CSS scale() Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

CSS scale() Function

Last Updated : 30 Aug, 2024

The scale() function is an inbuilt function which is used to resize the element in 2D plane. It scales the elements in horizontal and vertical directions. 

Syntax:

scale( sx )

or

scale( sx, sy )

Parameters:

  • sx: It resizes the elements in horizontal plane.
  • sy: It resizes the elements in vertical plane. If value of sy is not defined then the resize the element sx in both direction (horizontal and vertical).

Below examples illustrate the scale() function in CSS: 

Example 1:

Output:

👁 Image
Example 2:

Output:

👁 Image

Supported Browsers: The browsers supported by scale() function are listed below:

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 9
  • Firefox 3.5
  • Safari 3.1
  • Opera 10.5
Comment
Article Tags: