How do I remove the sticky table header? Dec 18, 2022 Author JamieGrimwood commented Mar 10, 2023 Exactly! Owner saadeghi commented Mar 10, 2023 • edited Currently there is no modifier class name to disable this style. But you can add an arbitrary Tailwind CSS class name like [&...
<header class="px-4 py-3 border-b border-slate-200"> <h2 class="font-semibold text-slate-900">My Wallet</h2> </header> <div class="p-3"> <!-- Table --> <div class="overflow-x-auto"> <table class="table-auto w-full"> <!-- Table header --> <thead class="text-[13px...
//cdn.jsdelivr.net/npm/tailwindcss@2.2.16/dist/tailwind.min.css"rel="stylesheet"><title>Sticky NavBar using Tailwind CSS</title></head><bodyclass="bg-gray-100"><headerclass="bg-white fixed top-0 w-full shadow-md"><navclass="container mx-auto px-6 py-3"><divclass="flex justify-...
td:first-of-type.custom-column-sticky { position: sticky; left: 0; top: 0; } I have some solution, you must have some key in columns like this (in my code is "sticky:true") export const columns = () => [ { Header: "No", accessor: "No", Cell: ({ row }) => { return ...