I am working on my html and CSS skills and have a serious question.
What are the disadvantages of using tables for the basic structure of a page and then using CSS to do all the formatting? :confused:
My plan is to create a basic html layout and CSS structure and then turn it into a joomla template.
HELP!
And thank you for your time and knowledge. :)
Tables or DIVs for webpage design...
Started by Johnnyboy, Sep 07 2007 11:27 AM
4 replies to this topic
#1
Posted 07 September 2007 - 11:27 AM
:D When things work the way they should it's a wonderful thing! It's the should part that gets me.
|
|
|
#2
Guest_Jordan_*
Posted 07 September 2007 - 11:49 AM
Guest_Jordan_*
I know one advantage of using pure CSS (rather than tables) is the ability to change the appearance of your website by a single click. For example the color buttons at the top of this website. That is just the color but you could change the way the entire site looked very easily.
Other than that and what was discussed here: http://forum.codecal...tead-table.html I'm unsure what the advantages are.
I know one major disadvantage of CSS is that IE does a very bad job of parsing it so your site may look good in every browser except the most used one.
Other than that and what was discussed here: http://forum.codecal...tead-table.html I'm unsure what the advantages are.
I know one major disadvantage of CSS is that IE does a very bad job of parsing it so your site may look good in every browser except the most used one.
#3
Posted 08 September 2007 - 02:25 PM
Thanks Jordan... I checked out that other posts and some others on the forum. They were helpful.
I'm gonna give divs a shot and I'm sure I'll have more questions.
I'm gonna give divs a shot and I'm sure I'll have more questions.
:D When things work the way they should it's a wonderful thing! It's the should part that gets me.
#4
Guest_Kaabi_*
Posted 10 November 2007 - 09:55 AM
Guest_Kaabi_*
From what I know about CSS, it is best to stick with that for all formatting, since you can't do so much with so little. As Jordan says, color change with a click.
#5
Posted 11 November 2007 - 08:02 AM
Don't be so quick to shoot down table based designs! You can use CSS with table based designs too you know! For instance, for the navigation at the top of this page the designer used a layout like this:
You could also use a table for this, like so:
I'm not saying that tables are better, just that both methods would work fine.
<ul> <li><a href="#">Link1</a></li> <li><a href="#">Link2</a></li> <li><a href="#">Link...</a></li> </ul>
You could also use a table for this, like so:
<table><tr> <td><a href="#">Link 1</a></td> <td><a href="#">Link 2</a></td> <td><a href="#">Link...</a></td> </tr></table>
I'm not saying that tables are better, just that both methods would work fine.


Sign In
Create Account


Back to top









