--- title: transform-box slug: Web/CSS/transform-box translation_of: Web/CSS/transform-box ---
{{CSSRef}}{{SeeCompatTable}}

概述

transform-box属性定义了与 {{cssxref("transform")}}、{{cssxref("transform-origin")}} 这两个属性有关联的布局框。

{{cssinfo}}

语法

/* Keyword values */
transform-box: border-box;
transform-box: fill-box;
transform-box: view-box;

/* Global values */
transform-box: inherit;
transform-box: initial;
transform-box: unset;

transform-box属性被指定为以下所列出的关键字值之一。

border-box
border box是用作引用框,一个表格(table)的border-box是table包装盒的边框,而不是表的边框。
fill-box
Uses the object bounding box as reference box.
view-box
Uses the nearest {{Glossary("SVG")}} viewport as reference box. If a {{SVGAttr("viewBox")}} attribute is specified for the SVG viewport creating element, the reference box is positioned at the origin of the coordinate system established by the viewBox attribute and the dimension of the reference box is set to the width and height values of the viewBox attribute.

Formal syntax

{{csssyntax}}

Specifications

Specification Status Comment
{{SpecName('CSS3 Transforms', '#transform-box', 'transform-box')}} {{Spec2('CSS3 Transforms')}} Initial definition

Browser compatibility

{{Compat("css.properties.transform-box")}}

See also