Reputation: 4370
I want to try to use div tags and css instead of tables in my web design. Can you suggest any resource that I can learn using div tags ?
Upvotes: 0
Views: 1389
Reputation: 5097
There are different css grid systems out there that can be a starting point for you:
Upvotes: 2
Reputation: 94
It's quite a switch from tables to div's! Lot's of stuff to be learned. Its smart to google and start reading about a few subjects before coding. I think generators and grids are not what you are looking for, because you need to learn basic principles first.
Google for subjects like:
When u start with these subjects, the workings of the divs become a bit clearer. Then the real shizzle starts when you run into some inconsistencies with browsers and such (thats where the resets help).
Thats just my opinion. :)
Upvotes: 1
Reputation: 382806
Here is an excellent tutorial on that:
The key is to understand float
and clear
properties amongst other things.
Upvotes: 0