Jump to content

Jmarton1

Member
  • Posts

    43
  • Joined

  • Last visited

Posts posted by Jmarton1

  1. There are lot of reasons to deny the use of table for layouts instead of div.

    1. Tables are usually more bytes of markup. (More bytes of traffic for host and hence make it expensive for you, as some hosts charge on amount of bandwidth used)
    2. Tables usually prevent incremental rendering. (Takes longer time to load then CSS)
    3. Tables may require you to chop single, logical images into multiple ones. (This also increases page load time)
    4. Tables break text copying on some browsers.
    5. Tables prevent certain layouts from working within them. (like height:100% for child elements of <td>)
    6. Table-based layouts usually take more time to implement.
    7. Tables are semantically incorrect markup for layout. (They describe the presentation not layout)
    8. Tables lock you into the current design and make redesigns MUCH harder than semantic HTML+CSS.

     

    In fact, I use div not only for layouts but also where I actually needs a table.

  2. Link wheeling is SEO method for getting links for your site.You can make more than ten or twenty blogs on different web 2.0 sites and than write content for those sites. Form the content and these blogs or sites you can easily link back to your webpage.

×
×
  • Create New...