CSS Transforms

In this lecture, we'll explore CSS transforms. CSS transforms allow you to rotate, scale, skew, or translate an element. This can greatly enhance the user experience by creating more dynamic and interactive designs.

Desired Outcomes

By the end of this lecture, you should be able to:

  • Understand and use the CSS transform property.
  • Apply 2D transformations like rotate, scale, skew, and translate.

The transform property allows you to modify an element's appearance and shape. You can move, rotate, scale, or skew the element without changing the layout or affecting the other elements around it.

Here are some of the 2D transform methods:

  • translate(): Moves an element from its current position.
  • rotate(): Rotates an element clockwise from its current position.
  • scale(): Increases or decreases the size of an element.
  • skewX() and skewY(): Skews an element along the X and Y-axis.

Translate

The translate() CSS function repositions an element in the 2D space. It moves the element from its current position.

transform: translate(X, Y);
  • X is the horizontal move (left or right).
  • Y is the vertical move (up or down)

For X and Y you can use absolute or relative units as well as positive and negative values.

Here's an example of how to use CSS transforms:

div  {
    width: 60px;
    height: 60px;
    text-align: center;
    border: 1px solid black;
    /* This will move the element 50 pixels to the right and 20 pixels down */
    transform: translate(50px, 20px);
}
Translate
Translate

In this example, the <div> is moved 50px to the right and 20px down from its original position.

Rotate

The rotate() CSS function rotates an element around a fixed point, which by default is the center of the element.

transform: rotate(angle);
  • angle defines the rotation's magnitude and direction. It can be in degrees (deg), radians (rad), turns, etc.

div {
  width: 60px;
  height: 60px;  
  margin: 0 auto;
  border: 1px solid black;
  text-align: center;
  /* This will rotate the element 20 degrees clockwise */
  transform: rotate(20deg);
}
Rotate
Rotate

In this example, the <div> is rotated 20 degrees clockwise.

Scale

The scale() CSS function resizes an element. It can increase or decrease the size based on the scaling factor provided.

transform: scale(X, Y);
  • X scales the element horizontally.
  • Y scales the element vertically.
div  {
    width: 60px;
    height: 60px;    
    margin: 0 auto;
    text-align: center;
    border: 1px solid black;
    /* This will double the size of the element */
    transform: scale(2);
}
Scale
Scale

Here, the <div> is 2 times its original width and its original height.

Skew

The skewX() and skewY() CSS functions skew an element along the X-axis and Y-axis respectively. This can create a slanting or distorting effect.

transform: skewX(angle);
transform: skewY(angle);
  • angle defines the skew's magnitude and direction.
div {
  width: 60px;
  height: 60px;    
  margin: 0 auto;
  text-align: center;
  border: 1px solid black;
  /* This will skew the element 20 degrees along the X-axis */
  transform: skewX(20deg);
}

In this example, the <div> would be skewed 20 degrees along the X-axis.

Skew
Skew

Transform shorthand

You can combine multiple transform functions in a single transform property. For example:

.box {
  transform: translate(50px, 100px) rotate(45deg) scale(1.5) skewX(10deg);
}
  • Remember to test transforms on various browsers to ensure cross-browser compatibility.
  • Consider using CSS transitions or animations to smoothly apply these transformations over time.

-75%

Time remaining:
days 00: 00: 00

Learn to code HTML & CSS

From Zero to Hero

Check out this course on Udemy, now at 75% off! Inside this interactive course, I will teach you how to develop websites from scratch moving from beginner to advanced concepts. I take time to explain every detail and finish off by building some real-world websites.

HTML & CSS: From Zero to Hero
Learn to code HTML & CSS