Windframe
Build Tailwind UIs that actually look good!
.jpg)
The row-end-13 class ensures the grid item ends at the thirteenth row, often used in custom grid layouts.
The row-end-13 class ensures the grid item ends at the thirteenth row, often used in custom grid layouts.
<div class="rounded-t-md p-4 bg-indigo-50 mt-12"> <div class="grid grid-cols-4 gap-4"> <div class="bg-indigo-500 text-white p-4 font-bold text-center">A</div> <div class="bg-indigo-500 text-white p-4 font-bold text-center ">B</div> <div class="bg-indigo-500 text-white p-4 font-bold text-center ">C</div> <div class="bg-indigo-500 text-white p-4 font-bold text-center">D</div> <div class="bg-indigo-500 text-white p-4 font-bold text-center row-end-13" > E </div> <div class="bg-indigo-500 text-white p-4 font-bold text-center">F</div> <div class="bg-indigo-500 text-white p-4 font-bold text-center">G</div> <div class="bg-indigo-500 text-white p-4 font-bold text-center">H</div> <div class="bg-indigo-500 text-white p-4 font-bold text-center">I</div> <div class="bg-indigo-500 text-white p-4 font-bold text-center">J</div> </div></div>E
Add the rows-end-13 class directly to your HTML element:
<div class="rows-end-13"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply rows-end-13 at specific breakpoints:
<div class="sm:rows-end-13 md:rows-end-13 lg:rows-end-13"> Responsive element</div>sm:rows-end-13 — applies from 640px and upmd:rows-end-13 — applies from 768px and uplg:rows-end-13 — 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
