|
hi
i normally code my html pages using div tags and css, however a few pages i build have a tabular data example 5 rows and 5 columns, normally this can be done using tables with 5 table rows and each having 5 table datas, however i would like to avoid using tables if possible
if i were to use divs then in the case of 5 rows and 5 columns example i would have 5 outer divs for each row and each outer div will have 5 inner divs floating left with width and height which i think will be a lot of loating involved in the page and i guess this might impact the load time of the page however i am just guessing about the load time
if i have only few rows and columns i guess i can use outer divs and inners divs however if i have for example 10 rows or 20 rows of tabular data to display then i guess the amount of floating will increasing drastically along with other divs which are floating in the entire page.
can anyone provide a solution for this table rows and columns situation that i can apply for few rows or multiple rows example 20 or 30 rows.
thanks a lot for your help.
|