HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-03-09
1 <p>Great job! Now use transforms to move and rotate the short rectangles so that they form an arrow.</p>
1 <p>Great job! Now use transforms to move and rotate the short rectangles so that they form an arrow.</p>
2 <p>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:</p>
2 <p>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:</p>
3 .some-class::before { transform: translate(15px, 15px) rotate(90deg); }<p>The order in which the transform is performed is important, since different orders may produce different results.</p>
3 .some-class::before { transform: translate(15px, 15px) rotate(90deg); }<p>The order in which the transform is performed is important, since different orders may produce different results.</p>