Webmaster Forum


Go Back   Webmaster Forum > Web Development > Web Design Lobby

Web Design Lobby Forum for general web design issues not specific to scripting or graphics.


Reply
 
LinkBack Thread Tools Display Modes
Share |
  #21 (permalink)  
Old 12-06-2010, 11:03 PM
Banned
 
Join Date: 12-06-10
Posts: 9
iTrader: 0 / 0%
I always prefer css, because css is easy and very affective way to design and develop your site.
 
Reply With Quote
  #22 (permalink)  
Old 12-07-2010, 02:51 AM
Junior Member
 
Join Date: 12-07-10
Posts: 1
iTrader: 0 / 0%
Hi,thanks for sharing the discussion regarding to CSS or tables that are beneficial for website designing.I think css is more better than tables because it takes less time to learn and makes the website layout more attractive.Thanks again a lot....

[removed]

Last edited by HTMLBasicTutor; 12-07-2010 at 04:06 AM.
 
Reply With Quote
  #23 (permalink)  
Old 02-28-2011, 03:18 AM
moneyonlinesorg's Avatar
v7n Mentor
 
Join Date: 02-03-11
Location: USA
Posts: 1,208
iTrader: 0 / 0%
The way I've looked at it, since I came online back in 1992, first websites in 1996, after designing with tables, was that divs and css were the new tables. Speaking from the standpoint of a designer that's used both, benefits of divs with css, to me, is better control and less html code. It essentially lowers your html file sizes because most the actual styling code now resides within the css. It's the whole idea of division of format and style. One file provides basic format, the other provides layout and style.
__________________
How to Make Money Online Blog
How to Make Money - Making Money Online - The FREE no BS way How to Make Money Online
Online Since 1994. First site around 1996. Experience over almost 20 years.
 
Reply With Quote
  #24 (permalink)  
Old 02-28-2011, 10:28 AM
Member
Latest Blog:
None

 
Join Date: 12-09-10
Location: Cracow, Poland
Posts: 42
iTrader: 0 / 0%
A bit necro-post but if topic is up I can add my few $. It's funny because I start my web design adventure then div-based styles become popular so I didn't made any site with tables. Some time ago I had to code some mail templates and i learned that it's simpler tomade it like in old times with tables. And I must confess it was quite hard for me to use them and it took some time to learn it. This shows me that css based layouts are much better for readability and it's easer to modify it.
__________________
Travel and leisure | Crochet Blog
 
Reply With Quote
  #25 (permalink)  
Old 02-28-2011, 11:03 AM
moneyonlinesorg's Avatar
v7n Mentor
 
Join Date: 02-03-11
Location: USA
Posts: 1,208
iTrader: 0 / 0%
With email marketing, different situation. It's much easier to go back to the old table layout for stuff like that, don't have to worry about dependent files and such that way as much or whether they'll make it along with the email file.
__________________
How to Make Money Online Blog
How to Make Money - Making Money Online - The FREE no BS way How to Make Money Online
Online Since 1994. First site around 1996. Experience over almost 20 years.
 
Reply With Quote
  #26 (permalink)  
Old 02-28-2011, 03:03 PM
HTMLBasicTutor's Avatar
Super Moderator
 
Join Date: 10-29-07
Location: British Columbia, Canada
Posts: 18,071
iTrader: 5 / 100%
Don't understand why you guys want to use tables. Find them most frustrating (other than maybe for 3 or 4 blocks for layout). Data fine, but for building a web page? You have to redo the whole site if you want to change the table cell layout where as if you use CSS you just have to change the CSS file and maybe make a couple of other tweaks.

To better understand the problems with HTML emails you could read through The Email Standards Project
__________________

HTML Basic Tutor - Learn how to code for better SEO
Basic Computer Information - Computer & internet basics for website owners

SEO troubleshooting and review services available. - Pm me.
 
Reply With Quote
  #27 (permalink)  
Old 03-01-2011, 06:25 AM
The Controversial Coder
Latest Blog:
None

 
Join Date: 05-01-06
Location: Manchester; UK
Posts: 2,372
iTrader: 0 / 0%
Quote:
Originally Posted by HTMLBasicTutor View Post
Don't understand why you guys want to use tables.
What else am I supposed to use when I am layout out tabular data?

Tables exist of displaying and holding tabular data that would go into a table, it's not a layout container, nor should it be used as such. Anyone using tables to hack together a website is doing it wrong, they're using HTML wrong. That is a fact.

You wouldn't use lists for paragraphs and you wouldn't use paragraphs for lists, don't use tables for layouts.
 
Reply With Quote
  #28 (permalink)  
Old 03-01-2011, 09:44 AM
HTMLBasicTutor's Avatar
Super Moderator
 
Join Date: 10-29-07
Location: British Columbia, Canada
Posts: 18,071
iTrader: 5 / 100%
Quote:
Originally Posted by Dan Williamson View Post
What else am I supposed to use when I am layout out tabular data?
I was referring to using tables for layout.

For some reason programmers of things like ecommerce software have this thing about using tables instead of divs for the information they fetch from the database.
__________________

HTML Basic Tutor - Learn how to code for better SEO
Basic Computer Information - Computer & internet basics for website owners

SEO troubleshooting and review services available. - Pm me.
 
Reply With Quote
  #29 (permalink)  
Old 03-01-2011, 01:47 PM
The Controversial Coder
Latest Blog:
None

 
Join Date: 05-01-06
Location: Manchester; UK
Posts: 2,372
iTrader: 0 / 0%
Quote:
Originally Posted by HTMLBasicTutor View Post
I was referring to using tables for layout.

For some reason programmers of things like ecommerce software have this thing about using tables instead of divs for the information they fetch from the database.
I should have used the sarcasm smiley. Sorry.
 
Reply With Quote
  #30 (permalink)  
Old 03-02-2011, 08:36 AM
MarPlo's Avatar
Contributing Member
 
Join Date: 03-01-11
Posts: 83
iTrader: 0 / 0%
I try to use DIVs and CSS for layout. Makes the code cleaner and loading faster.
__________________
Free Courses and Tutorials for Web development.
Free JavaScript - jQuery Course lessons and tutorials.
 
Reply With Quote
  #31 (permalink)  
Old 03-09-2011, 01:51 AM
wulaishiwo's Avatar
Contributing Member
Latest Blog:
None

 
Join Date: 03-02-11
Location: China
Posts: 90
iTrader: 0 / 0%
CSS are used for format and layout, tables are not good for layout, but sometimes you need to use tables. Both CSS and table are important in builing website,so you must be familiar with them.
__________________
cambridge satchels

Last edited by HTMLBasicTutor; 03-09-2011 at 01:58 AM.
 
Reply With Quote
  #32 (permalink)  
Old 03-09-2011, 02:48 AM
The Controversial Coder
Latest Blog:
None

 
Join Date: 05-01-06
Location: Manchester; UK
Posts: 2,372
iTrader: 0 / 0%
Quote:
Originally Posted by wulaishiwo View Post
CSS are used for format and layout, tables are not good for layout, but sometimes you need to use tables. Both CSS and table are important in builing website,so you must be familiar with them.
You should use tables, only when you are using tabular data, you should use divisions and CSS for mark-up and presentation respectively.
 
Reply With Quote
  #33 (permalink)  
Old 04-02-2011, 01:34 PM
Member
Latest Blog:
None

 
Join Date: 04-02-11
Location: London, UK
Posts: 32
iTrader: 0 / 0%
Tables is the past, CSS is the present and probably the future. I used to use tables for layouts becase I liked the idea that I could create a grid to base my site in, but CSS and DIVs is so much nicer once you've spent a little time learning. You can completely change the way a site looks with just a few changes to the CSS, which speeds up the process of development. Plus it'll mean shorter code, faster loading pages, and higher Google rankings. Take the time to move to CSS if you hadn't realised already! :-)
 
Reply With Quote
  #34 (permalink)  
Old 05-25-2011, 07:15 AM
Junior Member
 
Join Date: 05-24-11
Posts: 5
iTrader: 0 / 0%
I go for CSS divs, simply because its more professional look,faster loading of websites. Tables are only use for tabular data and not for positioning,divs are flexible unlike tables.Its very inappropriate that you use tables for the whole web structure.
 
Reply With Quote
  #35 (permalink)  
Old 05-26-2011, 11:04 PM
Contributing Member
Latest Blog:
None

 
Join Date: 02-02-11
Posts: 338
iTrader: 0 / 0%
I prefer CSS.It potentially offers an almost perfect solution to design elements in Website design.It offers practical, efficient and quick methods of altering the design.
__________________
# 1 Web Banner Design Firm - Banners Mall
Custom Twitter backgrounds -ilovetwitter
 
Reply With Quote
  #36 (permalink)  
Old 07-20-2011, 11:41 PM
findyourartschool's Avatar
Contributing Member
Latest Blog:
None

 
Join Date: 06-07-11
Location: India
Posts: 90
iTrader: 0 / 0%
CSS is different than Tables as if you need the tabular layout then it has to be done by using tables only but CSS is used for styling of the tables.
 
Reply With Quote
  #37 (permalink)  
Old 08-26-2011, 02:09 AM
Member
Latest Blog:
None

 
Join Date: 08-25-11
Posts: 41
iTrader: 0 / 0%
CSS works better in search engines than tables, so use CSS.
__________________
[signature removed by admin]
 
Reply With Quote
  #38 (permalink)  
Old 10-01-2011, 05:45 PM
Junior Member
 
Join Date: 09-01-11
Posts: 6
iTrader: 0 / 0%
I would go for css tablesless
 
Reply With Quote
  #39 (permalink)  
Old 10-01-2011, 06:09 PM
snakeair's Avatar
Super Moderator
 
Join Date: 12-31-07
Location: Medford, NJ
Posts: 42,116
iTrader: 3 / 100%
Quote:
Originally Posted by bedum View Post
I would go for css tablesless
Why?
__________________
Newbiz Advertising - A resourceful blog

Like us on Facebook: facebook.com/Newbizshop

Premium WordPress Themes - A list of themes.
 
Reply With Quote
  #40 (permalink)  
Old 10-04-2011, 01:57 AM
Junior Member
 
Join Date: 09-25-11
Location: Amsterdam, The Netherlands
Posts: 14
iTrader: 0 / 0%
Conclusion: CSS for style, Tables for tabular data.

Some people don't want to work with tables anymore, but just like everything in code, you have to know when to use it and how to use it correctly.
 
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby

Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
tables gregy123 Coding Forum 9 10-12-2009 01:25 PM
tables jraemt86 Web Design Lobby 5 08-14-2008 08:12 PM
Why don't the tables to what I want them to do! Klaas Koopman Coding Forum 11 04-06-2006 07:51 AM
Tables or CSS? ATLien Web Usability 47 02-24-2006 08:12 AM
CSS vs. Tables GeXus SEO Forum 8 11-20-2005 12:22 PM


V7N Network
Get exposure! V7N I Love Photography V7N SEO Blog V7N Directory


All times are GMT -7. The time now is 02:14 PM.
Powered by vBulletin
Copyright © 2000-2013 Jelsoft Enterprises Limited.
Copyright © 2003 - 2013 Escalate Media LP




Search Engine Optimization by vBSEO 3.6.0 RC 2 ©2011, Crawlability, Inc.