Skip to main content

Transform Box

Utilities for setting transform box css property.

ClassProperties
transform-box-contenttransform-box: content-box;
transform-box-bordertransform-box: border-box;
transform-box-filltransform-box: fill-box;
transform-box-stroketransform-box: stroke-box;
transform-box-viewtransform-box: view-box;

Basic Usage

Use transform-box-border or any of above classes to set the transform box property. See more on transform box from MDN reference

As the reference suggests, a good example for using this property is this codepen.

For example you can use,

<div class="transform-box-fill">
<!--Some elementes-->
</div>

to add transform-box: fill; style to your element.