transition-property

Specifies which CSS properties to animate. tpall targets all, default with shorthand tall.

Class List

ClassCSSDescription
tpalltransition-property: allTarget all CSS properties for transition
tpnonetransition-property: noneNo transition targets (disabled)

Usage Examples

Shorthand tall auto-sets transition-property to all. Use for separate control only.

<!-- Shorthand usage (common) -->
<button class="tall200msease hover-bg6366F1">
  Automatically includes tpall
</button>

<!-- Disable transition -->
<div class="tpnone">
  This element has no transition applied
</div>

Tips & Notes

Shorthand sufficient in most cases

Shorthand like tall200msease includes tpall. Rarely needs separate specification.

Disable transitions with tpnone

Use tpnone to disable. Same as tnone (transition: none).