hi every one !
i want to make tables using css => means instead of using html tags like TR TD and others i want to define them in a .css file and then use them.
have any one experienced that?
Regards.
feyd | attempted to make topic title a bit more descriptive
table to div conversion
Moderator: General Moderators
To get started:
If you have tabular data, you should use table, th, tr an td.
If it is not tabular data, and want to display like data in tables is displayed you should use CSS.
Now down to bussines:
There are plenty of sites that will explain you how to achieve something that looks like tables with CSS. If i remember well (i'm not a designer), there is a book "tricks of the css gurus" by zeldmann...
Imho, i see people try to simulate the table layout with css, but end up adding a lot of <div> to accomplish that. So instead of having dirty table tags they now have dirty div tags.... In that case they would have achieved the best/fastest result with using table tags from the start.
If you have tabular data, you should use table, th, tr an td.
If it is not tabular data, and want to display like data in tables is displayed you should use CSS.
Now down to bussines:
There are plenty of sites that will explain you how to achieve something that looks like tables with CSS. If i remember well (i'm not a designer), there is a book "tricks of the css gurus" by zeldmann...
Imho, i see people try to simulate the table layout with css, but end up adding a lot of <div> to accomplish that. So instead of having dirty table tags they now have dirty div tags.... In that case they would have achieved the best/fastest result with using table tags from the start.