From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/ru/web/css/transform-style/index.html | 118 ++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 files/ru/web/css/transform-style/index.html (limited to 'files/ru/web/css/transform-style') diff --git a/files/ru/web/css/transform-style/index.html b/files/ru/web/css/transform-style/index.html new file mode 100644 index 0000000000..c8c931cc27 --- /dev/null +++ b/files/ru/web/css/transform-style/index.html @@ -0,0 +1,118 @@ +--- +title: transform-style +slug: Web/CSS/transform-style +translation_of: Web/CSS/transform-style +--- +
{{CSSRef("CSS Transforms")}}{{SeeCompatTable}}
+ +

Свойство transform-style CSS определяет положение дочернего элемента в 3D-пространстве или в той же плоскости, что и родительский элемент.

+ +

Если flat, то дочерний элемент  не будет существовать в своем собственном 3D-пространстве.

+ +

Поскольку это свойство не наследуется, его следует устанавливать для всех не прямых потомков элемента.

+ +

{{cssinfo}}

+ +

Syntax

+ +
/* Keyword values */
+transform-style: preserve-3d;
+transform-style: flat;
+
+/* Global values */
+transform-style: inherit;
+transform-style: initial;
+transform-style: unset;
+
+ +

Values

+ +
+
preserve-3d
+
Показывает, что дочерний элемент должен быть спозиционирован в 3D-пространстве.
+
flat
+
Показывает, что дочерний элемент лежит в той же плоскости, что и родительский.
+
+ +

Formal syntax

+ +
{{csssyntax}}
+ +

Specifications

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('CSS3 Transforms', '#transform-style', 'transform-style')}}{{Spec2('CSS3 Transforms')}}Initial definition
+ +

Browser compatibility

+ +

{{CompatibilityTable}}

+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support12{{property_prefix('-webkit')}}{{CompatGeckoDesktop("10")}}{{property_prefix('-moz')}}
+ {{CompatGeckoDesktop("16")}}
10[1]15{{property_prefix('-webkit')}}{{CompatVersionUnknown}}{{property_prefix('-webkit')}}
+
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureAndroidFirefox Mobile (Gecko)IE PhoneOpera MobileSafari Mobile
Basic support3.0{{property_prefix('-webkit')}}{{CompatGeckoMobile("10")}}{{property_prefix('-moz')}}
+ {{CompatGeckoMobile("16")}}
8.1{{CompatVersionUnknown}}{{property_prefix('-webkit')}}{{CompatVersionUnknown}}{{property_prefix('-webkit')}}
+
+ +

[1] Internet Explorer currently doesn't support the preserve-3d value.

+ +

See also

+ + -- cgit v1.2.3-54-g00ecf