From 28112112bf69a253f165bec62d9748d048ac540f Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 24 Jun 2021 23:01:26 +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..671eebd3 100644 --- a/7-animation/2-css-animations/article.md +++ b/7-animation/2-css-animations/article.md @@ -431,7 +431,7 @@ The `transform` property is a notable exception: - CSS transforms affect the target element box as a whole (rotate, flip, stretch, shift it). - CSS transforms never affect neighbour elements. -So browsers apply `transform` "on top" of existing Layout and Paint calculations, in the Composite stage. +...So browsers apply `transform` "on top" of existing Layout and Paint calculations, in the Composite stage. In other words, the browser calculates the Layout (sizes, positions), paints it with colors, backgrounds, etc at the Paint stage, and then applies `transform` to element boxes that need it.