...

/

Solution Review: CSS Transform Challenge 1

Solution Review: CSS Transform Challenge 1

The solution to the challenge of the transform and animation properties is discussed in this lesson.

We'll cover the following...

Solution review

Let’s have a look at the solution first.

  • HTML
  • CSS (SCSS)
html
css

Explanation

* {
  margin: 0;
}

The margin for all the elements by default is set to 0.

.box {
  width: 100px;
  height: 100px; 
  position: fixed;
}

The width and height of the boxes is set to 100px. The position is fixed to start from a specific location on a page.

#box1 { 
  animation: box1; 
  animation-duration: 8s;
  animation-iteration-count: infinite;
  background: coral;
  top: 0;
  left: 0;
}

To add animation to box1, we named it box1, and the cycle of animation is completed in eight seconds. The animation will keep running for infinite iterations. The background color of box1 is set to coral. The box is positioned at the top left corner as the values are set to 0. ...