Resizable columns with table-layout: fixed
I need to make cells that can be horizontally scrolled.
I learned that
table-layout: fixed
is making it possible.
But now with table-layout: fixed
, resizing one column of the group also resizes all its siblings. (See my codesandbox, and try to resize the Visits
column)
How to make it that it will resize only the column that I actually resize?
My Codesandbox is here:
https://codesandbox.io/p/sandbox/competent-mountain-2232qs0 Replies