Windframe
Build Tailwind UIs that actually look good!
.jpg)
The font-mono class applies a monospaced font, often used for code snippets.
Try each class live and inspect the CSS output.
Use weight to establish clear visual hierarchy in your UI text.
font-semiboldfont-weight: 600;The font-mono class applies a monospaced font, often used for code snippets.
1<div2 class="p-5 font-bold bg-gray-100 rounded-t-md flex flex-col justify-center items-center"3>4 <h3 class="text-gray-500 mr-48">Font-mono</h3>5 <p class="font-mono ml-10">How vexingly quick daft zebras jump.</p>6</div>
How vexingly quick daft zebras jump.
Add the Font-Mono class directly to your HTML element:
1<div class="Font-Mono">2 <!-- Your content here -->3</div>
Use Tailwind's responsive prefixes to apply Font-Mono at specific breakpoints:
1<div class="sm:Font-Mono md:Font-Mono lg:Font-Mono">2 Responsive element3</div>
sm:Font-Mono — applies from 640px and upmd:Font-Mono — applies from 768px and uplg:Font-Mono — 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
