Tailwind CSS Font Size Last Updated : 23 Jul, 2025 Comments Improve Suggest changes 4 Likes Like Report This class accepts lots of value in tailwind CSS in which all the properties are covered as in class form. It is the alternative to the CSS font-size property. This class is used to set the font size of the text in an HTML document.Font size classes:text-xs: This class defines the text size as extra small.text-sm: This class defines the text size as small.text-base: This class defines the text size as base size.text-lg: This class defines the text size as large.text-xl: This class defines the text size as extra-large.text-2xl: This class defines the text size as 2 times extra-large.text-3xl: This class defines the text size as 3 times extra-large.text-4xl: This class defines the text size as 4 times extra-large.text-5xl: This class defines the text size as 5 times extra-large.text-6xl: This class defines the text size as 6 times extra-large.text-7xl: This class defines the text size as 7 times extra-large.text-8xl: This class defines the text size as 8 times extra-large.text-9xl: This class defines the text size as 9 times extra-large.Note: Change the size in the component with the required size mentioned above.Syntax:<element class="text-size">...</element>Example: HTML <!DOCTYPE html> <html> <head> <link href="https://unpkg.com/[email protected]/dist/tailwind.min.css" rel="stylesheet"> </head> <body class="text-center mx-4 space-y-2"> <h1 class="text-green-600 text-5xl font-bold"> GeeksforGeeks </h1> <b>Tailwind CSS Font Size Class</b> <div class="mx-24 bg-green-200"> <p class="text-xs"> Geeksforgeeks: A Computer Science portal for Geeks </p> <p class="text-sm"> Geeksforgeeks: A Computer Science portal for Geeks </p> <p class="text-base"> Geeksforgeeks: A Computer Science portal for Geeks </p> <p class="text-lg"> Geeksforgeeks: A Computer Science portal for Geeks </p> <p class="text-xl"> Geeksforgeeks: A Computer Science portal for Geeks </p> </div> </body> </html> Output: Create Quiz Comment S skyridetim Follow 4 Improve S skyridetim Follow 4 Improve Article Tags : Web Technologies CSS Tailwind CSS Tailwind-Typography Explore CSS Introduction 3 min read CSS Syntax 3 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