Tailwind CSS Resize
This class accepts lots of value in tailwind CSS in which all the properties are covered as a class form. This class is used to resize the element according to user requirements. It does not apply to inline elements or to block elements where overflow is visible. In CSS, we do that by using the CSS resize property.
Resize
- resize-none: This class is to prevent an element from being resizable.
- resize-y: This class is to make an element vertically resizable.
- resize-x: This class is to make an element horizontally resizable.
- resize: This class is to make an element horizontally and vertically resizable.
Syntax:
<element class="pointer-{axis-boolean}">...</element>
Example:
HTML
<!DOCTYPE html> < html > < head > < link href = "https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel = "stylesheet" > </ head > < body class = "text-center" > < h1 class = "text-green-600 text-5xl font-bold" > GeeksforGeeks </ h1 > < b >Tailwind CSS Resize Class</ b > < div id = "main" class="p-2 justify-around ml-32 h-26 w-2/3 flex items-stretch bg-green-200 border-solid border-4 border-green-900 gap-4"> < textarea class="resize border rounded-md w-24 h-12"></ textarea > < textarea class="resize-y border rounded-md w-24 h-12"></ textarea > < textarea class="resize-x border rounded-md w-24 h-12"></ textarea > < textarea class="resize-none border rounded-md w-24 h-12"></ textarea > </ div > </ body > </ html > |
Output:

Tailwind CSS resize class
Please Login to comment...