diff options
Diffstat (limited to 'files/es/web/css/transform-style/index.html')
| -rw-r--r-- | files/es/web/css/transform-style/index.html | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/files/es/web/css/transform-style/index.html b/files/es/web/css/transform-style/index.html new file mode 100644 index 0000000000..5f16a1dd5f --- /dev/null +++ b/files/es/web/css/transform-style/index.html @@ -0,0 +1,74 @@ +--- +title: transform-style +slug: Web/CSS/transform-style +translation_of: Web/CSS/transform-style +--- +<p><span class="seoSummary">La propiedad <strong><code>transform-style</code></strong> <a href="/en-US/docs/Web/CSS">CSS</a> establece si el elemento hijo esta posicionado en el espacio 3D (preserve-3d) o esta integrado(flat) en el plano del elemento.</span></p> + +<div>{{EmbedInteractiveExample("pages/css/transform-style.html")}}</div> + + + +<p>Si esta integrado (flat), el elemento hijo no existirá por sí solo en el espacio 3D.</p> + +<p>Como esta propiedad no se hereda, debe establecerse para todos los nodos internos descendientes (hijos) del elemento.</p> + +<h2 id="Syntax">Syntax</h2> + +<pre class="brush:css no-line-numbers notranslate">/* Keyword values */ +transform-style: flat; +transform-style: preserve-3d; + +/* Global values */ +transform-style: inherit; +transform-style: initial; +transform-style: unset; +</pre> + +<h3 id="Values">Values</h3> + +<dl> + <dt><code>flat</code></dt> + <dd>Indica que el elemento hijo yace en el plano del elemento mismo.</dd> + <dt><code>preserve-3d</code></dt> + <dd>Indica que el elemento hijo debe ser posicionado en el espacio 3D.</dd> +</dl> + +<h3 id="Formal_syntax">Formal syntax</h3> + +<pre class="syntaxbox notranslate">{{csssyntax}}</pre> + +<h2 id="Specifications">Specifications</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('CSS Transforms 2', '#transform-style-property', 'transform-style')}}</td> + <td>{{Spec2('CSS Transforms 2')}}</td> + <td>Initial definition.</td> + </tr> + </tbody> +</table> + +<p>{{cssinfo}}</p> + +<h2 id="Browser_compatibility">Browser compatibility</h2> + + + +<p>{{Compat("css.properties.transform-style")}}</p> + +<h2 id="See_also">See also</h2> + +<ul> + <li><a href="/en-US/docs/CSS/Using_CSS_transforms">Using CSS transforms</a></li> +</ul> + +<div>{{CSSRef}}</div> |
