penguru
penguru

Reputation: 4370

Div based web design tutorial/book

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

Answers (3)

eillarra
eillarra

Reputation: 5097

There are different css grid systems out there that can be a starting point for you:

Upvotes: 2

no1cobla
no1cobla

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:

  • css Box model
  • css floats
  • css positioning
  • css resets

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

Sarfraz
Sarfraz

Reputation: 382806

Here is an excellent tutorial on that:

DIV web design

The key is to understand float and clear properties amongst other things.

Upvotes: 0

Related Questions