Blog/February 5, 2026

Yumma CSS 3.11

New transition property variants for height & width to simplify dimension animations.

Yumma CSS 3.11

Transition Properties

This release expands the transitions system with three new utility properties specifically designed for animating element dimensions.

Targeting these specifically provides better performance & control.

Dimension Transitions

The tp-* (transition-property) category now includes three new prefixes:

PrefixProperty
tp-htransition-property: height;
tp-wtransition-property: width;
tp-dtransition-property: height, width;

These utilities are ideal for accordions, dropdowns, or any component requiring smooth size transitions.

<div class="w-16 h-16 tp-d td-300 tdu-300 ttf-io h:w-32 h:h-32"></div>

If only one axis requires animation, use the specific utilities:

<!-- Height animation -->
<div class="tp-h h:h-64"></div>
<!-- Width animation -->
<div class="tp-w h:w-64"></div>

Upgrade

Check the Upgrading Guide for a full list of utility renames & removals.

Terminal window
pnpm up yummacss@latest