From ce9ecb2507d70b18e21737a39e6ad7cc6cf4ed97 Mon Sep 17 00:00:00 2001 From: ericwilligers Date: Tue, 11 Oct 2016 10:25:27 +1100 Subject: [PATCH] [css-transforms-2] Transform properties create containing block The individual transform properties create a containing block, just like the transform property does. --- css-transforms-2/Overview.bs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css-transforms-2/Overview.bs b/css-transforms-2/Overview.bs index a672f5ae3c8..d23786b8564 100644 --- a/css-transforms-2/Overview.bs +++ b/css-transforms-2/Overview.bs @@ -93,10 +93,10 @@ All three properties accept the value none, which produces no transform at all. In particular, -this value does not trigger the creation of a stacking context, +this value does not trigger the creation of a stacking context or containing block, while all other values (including identity transforms like ''translate: 0px'') -create a stacking context, +create a stacking context and containing block, per usual for transforms.