Interactive online courses HTML Academy
2026-03-09 10:46 Diff

Great job! Now use transforms to move and rotate the short rectangles so that they form an arrow.

Remember that you can apply several transforms at the same time to the elements and pseudo-elements. To do this, you need to list them separated by a space, such as in the following way, for example:

.some-class::before { transform: translate(15px, 15px) rotate(90deg); }

The order in which the transform is performed is important, since different orders may produce different results.