From 771aab479df8902f244ebc9b6813ac6f204114da Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 24 Jun 2021 22:50:42 +0300 Subject: [PATCH] minor fixes --- 7-animation/2-css-animations/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7-animation/2-css-animations/article.md b/7-animation/2-css-animations/article.md index 424ac846..ebf68c83 100644 --- a/7-animation/2-css-animations/article.md +++ b/7-animation/2-css-animations/article.md @@ -427,7 +427,7 @@ The animations of properties that skip the Layout step are faster. It's even bet For most CSS properties, the rule is simple: if its change may affect geometry, move elements (even in theory), then it triggers Layout. Otherwise (e.g. a `color` change may not shift elements around), the browser doesn't need to calculate geometry and directly goes to Paint, or even Composite step. You can find a longer list of CSS properties and which stages they trigger at . -The `transform` property is a notable exception: +The `transform` property is special: - CSS transforms affect the target element box as a whole (rotate, flip, stretch, shift it). - CSS transforms never affect neighbour elements.