Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
A scale transform the element by using y-axis with CSS3
The scaleY(y) method is used to scale transform the element using y-axis.
Let us see the syntax −
scaleY(y)
Here, y is a number representing the scaling factor to apply on the ordinate of each point of the element.
Let us see an example −
div {
width: 60px;
height: 60px;
background-color: yellow;
}
.scaled {
transform: scaleY(0.5);
background-color: black;
} Advertisements
