Open In App

CSS scale() Function

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:



Below examples illustrate the scale() function in CSS: 

Example 1: 




<!DOCTYPE html> 
<html
<head
    <title>CSS scale() function</title
    <style
        body {
            text-align:center;
        }
        h1 {
            color:green;
        }
        .scale_image {
            transform: scale(1.5);
        }
    </style
</head
  
<body
    <h1>GeeksforGeeks</h1>
    <h2>CSS scale() function</h2>
    <br><br>
    <img class="scale_image" src
        alt="GeeksforGeeks logo"
</body
</html>

Output:

  

Example 2: 




<!DOCTYPE html> 
<html
<head
    <title>CSS scale() function</title
    <style
        body {
            text-align:center;
        }
        h1 {
            color:green;
        }
        .GFG {
            font-size:35px;
            font-weight:bold;
            color:green;
            transform: scale(1, 2);
        }
    </style
</head
  
<body
    <h1>GeeksforGeeks</h1>
    <h2>CSS scale() function</h2>
  
    <div class="GFG">Welcome to GeeksforGeeks</div
</body
</html>

Output:

  

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


Article Tags :