Do you use tables when making a website?

Discussion in 'Web Development and Programming' started by NBK*Twitch, Jun 14, 2010.

  1. NBK*Twitch

    NBK*Twitch Regular Member

    235
    0
    102
    I try not to,but sometimes I do for making a simple login area or affiliates area.
     
  2. Ferron

    Ferron Regular Member

    37
    4
    84
    I never use tables other than for tabular data.
     
  3. NBK*Twitch

    NBK*Twitch Regular Member

    235
    0
    102
    That is great,atleast you know what to use them for :D.
     
  4. ErikFox

    ErikFox Regular Member

    4
    0
    33
    I don’t use table’s much. I would prefer using Div tags. They are more flexible.
     
  5. dynastygal

    dynastygal Regular Member

    61
    0
    62
    I used them for my forum.
     
  6. Demon_skeith

    Demon_skeith Regular Member

    203
    4
    324
    only time I used tables with HTML was back when I was learning it in school and I didn't care to use them.
     
  7. DarkGizmo

    DarkGizmo Mr. Awesome

    145
    45
    364
    I try not to use tables. :)
     
  8. princefarr

    princefarr Regular Member

    3
    0
    33
    I have many thoughts on it. Expressing them right here and now might spark a debate and I have not had time to weight up the precise usefulness of the, with regards to your present dilemma.
     
  9. samdepps

    samdepps Regular Member

    4
    0
    33
    Using tables for structural design has several disadvantages. When you use Photoshop to create the design using the slice tool, many cells require a spacer image. Sure you can delete them and the use the height and width properties in the table; however, this seems a bit cumbersome.
     
  10. Syncro

    Syncro Regular Member

    22
    0
    42
    Tables are good on a few situations but from SEO point of view are to be avoided. I don't use tables for a few years already.
     
  11. Brandon

    Brandon Regular Member

    6,602
    1,707
    918
    Say no to tables and don't even consider iframes!
     
  12. BleepyEvans

    BleepyEvans Regular Member

    4
    2
    35
    Nah, tables are "so last year".
    Its divs all the way now. I think the only time I ever use a table is when I want to publicly display a table for data etc. Or in forums where its practically unavoidable.
     
    Brandon likes this.
  13. cpvr

    cpvr Regular Member

    3,220
    823
    918
    That, divs are so much faster.
     
    Brandon likes this.
  14. Monster

    Monster Admin Talk Staff

    515
    82
    762
    CSS layouting is far more powerful ... you can even use 3D coordinates (z-index!) to place elements, which makes a lot of stuff a lot easier! :)
     
  15. tirus

    tirus Regular Member

    6
    2
    37
    CSS is definitely more powerful indeed and is more preferable to tables. I also avoid using table at all costs because CSS is even more easier to manage. I did use them a lot before I got better with CSS as I felt it was more easier for lack of enough knowledge on CSS.
     
  16. Miner

    Miner Forum Theme designer

    72
    53
    114
    100% agree, Its the best method to follow to code designs today. ;)
     
  17. CM30

    CM30 Regular Member

    901
    500
    462
    Only when I need to display an actual table. I prefer using CSS and proper semantic markup for actual layouts.
     
  18. Bryce

    Bryce Regular Member

    248
    12
    164
    I used to loved tables about 10 years ago but now I love DIV tags. While tables are great for designing, they do involve a lot of coding and one little mistake can ruin your entire layout. DIVs do allow you to centralize everything and it is easy to code and debug with DIV tags.
     
  19. SimplySidy

    SimplySidy Website Consultant, Developer and Strategist

    87
    9
    84
    It depends. On many purchased or downloaded applications, they may have tables. And redoing the same thing without the use of Tables is quite unnecessary because of costs and overheads. So for these, I have to let them be in use. As for all other codes where I am the coder or the team lead, I ensure that we dont use tables except for displaying data - which goes best with tables.
     
  20. Artixion

    Artixion Regular Member

    24
    3
    44
    That depends on what I'm coding/designing, but usually not.
     

Share This Page