How to Hide table in mobile but show on large devices using tailwind!

How to Hide table in mobile but show on large devices using tailwind!

In tailwind,

If you do "hidden lg: block" in your table row, then your table rows wont take the whole width though you have given "w-full" to your table.

In such cases, do "hidden lg:table " & yr table row will take whole width

That was the trick for the day

Thank you. Keep exploring !!!