HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

transform-box

Description

The transform-box property for CSS specifies the reference box for the transform.

Syntax

CSS

transform-box: value;

JS

object.style.transformBox = "value";

Values

<'transform-box'> = content-box | border-box | fill-box | stroke-box | view-box
content-box

Uses the content box as reference box.

border-box

Uses the border box as reference box.

fill-box

Uses the object bounding box as a reference box.

stroke-box

Uses the stroke bounding box as a reference box.

view-box

Uses the nearest SVG viewport as a reference box.

Initial

view-box

Examples

1 · border-box

2 · content-box

3 · fill-box

4 · stroke-box

5 · view-box

6 · JS