Windframe
Build Tailwind UIs that actually look good!
.jpg)
The text-2xl class sets the text size to extra large (2xl), which is larger than the base font size.
The text-2xl class sets the text size to extra large (2xl), which is larger than the base font size.
<div class="p-5 font-bold bg-gray-100 rounded-t-md"> <h3 class="text-gray-500 ml-20">text-2xl</h3> <div class="flex flex-col justify-start items-center"> <p class="non-italic text-gray-700 text-2xl"> Jinxed wizards pluck ivy from the big quilt. </p> </div></div>Jinxed wizards pluck ivy from the big quilt.
Add the text-2xl class directly to your HTML element:
<div class="text-2xl"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply text-2xl at specific breakpoints:
<div class="sm:text-2xl md:text-2xl lg:text-2xl"> Responsive element</div>sm:text-2xl — applies from 640px and upmd:text-2xl — applies from 768px and uplg:text-2xl — applies from 1024px and upYou can extend or override this utility in your tailwind.config.js. See the Tailwind CSS documentation for details on customizing your theme.
Windframe is an AI visual editor for rapidly building stunning web UIs & websites
