I need to create a virtual table to browse through a very large dataset. Is there a way to position the rows (with fixed height) anywhere within the table? The issue I am facing is that the table properties automatically adjust the row height, disregarding the specific pixel height set for the tr element.
table { height: 10000px }
table tr { height: 10px; }
(ps. Using divs in this scenario is not feasible.)