What does skew mean in css

青灯夜游
Release: 2021-04-06 15:46:27
Original
8023 people have browsed it

skew means "skew" and is a built-in function in css that needs to be used together with the transform attribute for skew transformation of elements. There are three kinds of skew in CSS: "skew(x-angle,y-angle)" tilt conversion along the X and Y axes, "skewX(angle)" or "skewY(angle)".

What does skew mean in css

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

What does skew mean in css

#skew means "skew" and is a built-in function in css that needs to be used together with the transform attribute for skew transformation of elements.

TheTransform property is applied to the 2D or 3D transformation of the element. This property allows you to rotate, scale, move, tilt, etc. the element.

There can be three kinds of skew()

  • ##skew(x-angle,y-angle) Define 2D skew transformation along the X and Y axes.

  • skewX(angle) Defines the 2D skew transformation along the X-axis.

  • skewY(angle) Defines the 2D skew transformation along the Y axis.

skewX()

Skew the element and fill it with the angle. Below ↓ you will see, As the element is tilted, the height actually remains the same. If you are smart, you will know that the constant height means that the Y-axis is stretched.

##Same as scale, what changes is the scale of the axis . → scale

##skew

is a combination of skewx and skewy, but there are differences.

If you use a single parameter, it has the same effect as using skewx and skewy alone

But! If you use two parameters at the same time, there is a little difference from using skewx and skewy at the same time.

So, why does this difference occur? In fact, the reason is very simple. The execution order of skewX(40deg), skewY(40deg) is to first skew 40deg according to the X axis, and then skew 40deg according to the Y axis. But skew(40deg, 40deg) is not like this. He operates at the same time, so the results are slightly different.

Learning video recommendation:

css video tutorial

The above is the detailed content of What does skew mean in css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!