--- name: transform-skew description: Skewing elements on x and y axes with degree values --- # Skew Utilities for skewing (distorting) elements. ## Usage ### Skewing both axes Use `skew-` to skew on both axes: ```html
Slight skew
Moderate skew
Strong skew
``` ### Axis-specific skewing Use `skew-x-` or `skew-y-` to skew on one axis: ```html
Skewed horizontally
Skewed vertically
``` ### Negative skewing Use negative values for opposite direction: ```html
Negative skew
Negative x-axis skew
``` ### Custom values Use arbitrary values for custom skew: ```html
Custom radian skew
Custom degree skew
``` ## Key Points - `skew-*` skews on both x and y axes - `skew-x-*` skews horizontally only - `skew-y-*` skews vertically only - Values are in degrees: `skew-3` = 3 degrees - Negative values skew in opposite direction - Common values: `3`, `6`, `12` degrees for subtle effects - Use sparingly - excessive skewing can make text hard to read