Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
|
That's how table layouts are created, but nesting tables inside other tables. I can see where not knowing that would make it more difficult. You can technically nest as many levels as you want, but the more tables you nest inside of tables the more difficult things will be both for you to find any errors and also for the brower to display. The typical approach is to set up one outer table that controls the overall layout and then nest a table in a cell when you need to divide that cell further into more rows and columns.
The better way to actually layout a page in the opinion of many including myself is through css. You can certainly use tables, but css has many advantages over tables.
All caps used to be the standard, but as html developed and xhtml began to appear lower case is really preferred. You'll still see a lot of sites using all caps, but I'd go with lower case. I think it's actually easier to read and if you do move into using xhtml, which you should at some point you will need to use lower case so why not get into the habit from the start
xhtml isn't really anything more difficult than html. if you use lower case and always make sure to close all your tags you're most of the way to using it. html is evolving into xhtml and while html will be around for awhile I think it's better to do things based on where they're going rather than where they've been.
|