Resize
.resize-none
.resize-none
Prevents any resizing of the element.
CSS equivalent: resize: none;
Example usage:
.resize-both
.resize-both
Allows the element to be resized both horizontally and vertically.
CSS equivalent: resize: both;
Example usage:
.resize-horizontal
.resize-horizontal
Allows the element to be resized horizontally only.
CSS equivalent: resize: horizontal;
Example usage:
.resize-vertical
.resize-vertical
Allows the element to be resized vertically only.
CSS equivalent: resize: vertical;
Example usage:
.resize-block
.resize-block
Allows block-level elements to be resized.
CSS equivalent: resize: block;
Example usage:
.resize-inline
.resize-inline
Allows inline-level elements to be resized.
CSS equivalent: resize: inline;
Example usage:
.resize-initial
.resize-initial
Resets the resize property to its initial value.
CSS equivalent: resize: initial;
Example usage:
.resize-inherit
.resize-inherit
Inherits the resize property from its parent element.
CSS equivalent: resize: inherit;
Example usage:
.resize-unset
.resize-unset
Resets the resize property to its inherited or initial value.
CSS equivalent: resize: unset;
Example usage:
Last updated