Tailwind CSS Resize Last Updated : 23 Jul, 2025 Comments Improve Suggest changes 2 Likes Like Report 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. Resizeresize-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 lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tailwind CSS Resize Class</title> <link href="https://unpkg.com/[email protected]/dist/tailwind.min.css" rel="stylesheet"> </head> <body class="flex flex-col items-center justify-center min-h-screen bg-gray-100 p-4"> <h1 class="text-green-600 text-5xl font-bold mb-6"> GeeksforGeeks </h1> <b class="text-xl mb-4">Tailwind CSS Resize Class</b> <div id="main" class="p-6 flex flex-wrap justify-center bg-green-200 border-4 border-green-900 gap-4 rounded-lg shadow-lg"> <textarea class="resize border rounded-md w-24 h-12 p-2"></textarea> <textarea class="resize-y border rounded-md w-24 h-12 p-2"></textarea> <textarea class="resize-x border rounded-md w-24 h-12 p-2"></textarea> <textarea class="resize-none border rounded-md w-24 h-12 p-2"></textarea> </div> </body> </html> Output: Comment S skyridetim Follow 2 Improve S skyridetim Follow 2 Improve Article Tags : Web Technologies CSS Tailwind CSS Tailwind-Interactivity Explore CSS Introduction 3 min read CSS Syntax 2 min read CSS Selectors 6 min read CSS Comments 2 min read CSS Colors 5 min read CSS Borders 5 min read CSS Margins 4 min read CSS Height and Width 4 min read CSS Outline 4 min read CSS Fonts 4 min read Like