Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

CSS Forum


You are currently viewing our CSS Forum as a guest. Please register to participate.
Login



Reply
Interesting CSS and HTML article (pros and cons). Those using heavy CSS read this!
Old 05-14-2005, 12:32 AM Interesting CSS and HTML article (pros and cons). Those using heavy CSS read this!
Jared's Avatar
Skilled Talker

Posts: 52
Location: St. Anthony, ID
Trades: 0
http://www.jkd.co.uk/accesscentre/css.asp
Jared is offline
Reply With Quote
View Public Profile Visit Jared's homepage!
 
 
Register now for full access!
Old 05-14-2005, 06:07 AM
OmuCuSucu's Avatar
Vi Veri Veniversum Vivus

Posts: 1,168
Name: Dragos-Valentin
Location: Cluj-Napoca, RO
Trades: 0
i only read the cons section and i must say i don't agree.
CSS display on different browsers - well i guess some browser developers should start creating real browsers then
User override - i'd say this is a pro ... since people with accesibility problems can view pages even if the designer made no special css for them ... and afterall a web page is created for the viewers not the designers
CSS vs. Tables - well if i'm not mistakeing tables should display tabular data (somewhat like what excel does) and not play a part in the layout ... html is used to describe the data in the document not format it ... the structure should be logical. and it talks about tables being easier ... why should it be easier when it can be better?

as a conclusion: the article in the link you posted seems to be misleading in my humble opinion, and is not worth much for me
__________________
.
» Please remember to add to my Talkupation if you enjoyed my post. Thank you :)
.

Last edited by OmuCuSucu; 05-14-2005 at 06:13 AM..
OmuCuSucu is offline
Reply With Quote
View Public Profile
 
Old 05-14-2005, 06:31 AM
praveen's Avatar
Life is a Dream

Posts: 3,591
Name: Praveen
Location: Chennai, India
Trades: 0
i agree with Omucusucu.

the article is misleading and its not worth the time..

there are plenty of counter arguments i can give you.. but thats giving toomuch emphasis and importance to this silly article..
__________________

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
praveen is offline
Reply With Quote
View Public Profile
 
Old 05-14-2005, 07:27 AM
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,519
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
I agree with the fact that the article is mainly fatuous and misleading, even the cons section read more like pros for CSS layouts.

One glaring omission was in pointing out the fact that if you use a full, valid doctype the vast majority of differences between browsers disappear or become minor points to be aware of when using borders, padding and margins on the same element.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 05-14-2005, 07:45 AM
Ickie's Avatar
Extreme Talker

Posts: 217
Location: Australia
Trades: 0
Hmm... that was interesting to read, I didn't know what CSS was up till OmuCuSucu told me about it.

This gives me a better idea of what he was talking about.
Ickie is offline
Reply With Quote
View Public Profile
 
Old 05-14-2005, 07:59 AM
OmuCuSucu's Avatar
Vi Veri Veniversum Vivus

Posts: 1,168
Name: Dragos-Valentin
Location: Cluj-Napoca, RO
Trades: 0
Ickie:
HTML = HyperText Markup Language
CSS = Cascading Style Sheets

read more about them on w3.org ... html displays the contens logically while css makes it beautiful

html got nothing to do with the layout and design but with logically valid information. so tables should not design but rather describe tabular data

back to the article in the first post: the article makes no difference between markup and style and therefore it is no good. just like we use a cup to drink coffee and not a shovel, we use css for style and layout and not html

EDIT:
Ickie: i pm-ed you the answer to the question you ask in the following post. let's keep the thread on topic now , i think it would have gone offtopic
__________________
.
» Please remember to add to my Talkupation if you enjoyed my post. Thank you :)
.

Last edited by OmuCuSucu; 05-14-2005 at 08:11 AM..
OmuCuSucu is offline
Reply With Quote
View Public Profile
 
Old 05-14-2005, 08:05 AM
Ickie's Avatar
Extreme Talker

Posts: 217
Location: Australia
Trades: 0
Yeah I'm on w3 now, just one question (I would PM you but I haven't got 5 posts yet), is it better to draw tables in CSS or HTML?

Sorry for the topic hi-jack.

EDIT: Yeah.. im sorry about the off-topic, im usally not like that. And also I still can't use PM, it still says I need a minium of 5 posts.

Last edited by Ickie; 05-14-2005 at 08:19 AM..
Ickie is offline
Reply With Quote
View Public Profile
 
Old 05-14-2005, 11:54 AM
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,519
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
the idea is to use CSS instead of using tables for layout.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 05-14-2005, 12:21 PM
praveen's Avatar
Life is a Dream

Posts: 3,591
Name: Praveen
Location: Chennai, India
Trades: 0
you can use both css and tables to create nice layouts.

check this nice tutorial : http://www.projectseven.com/tutorial...s_td/index.htm

just a quote from there

Quote:
CSS works for tables too
CSS positioning is not exclusive to "table-less" layouts
__________________

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
praveen is offline
Reply With Quote
View Public Profile
 
Old 05-14-2005, 12:29 PM
OmuCuSucu's Avatar
Vi Veri Veniversum Vivus

Posts: 1,168
Name: Dragos-Valentin
Location: Cluj-Napoca, RO
Trades: 0
yes praaven you are right, they work together but i dissagree with tables beig used for positioning in page, for layout or design.

if you would have to show a list of users with details, ok a table goes well since that is tabular data. but to create the outlines of an entire page using tables is not logical.

i'm not sure i'm speaking perfect english right now

PS: forgot to say hello to you praaven ... i haven't been around in ages
__________________
.
» Please remember to add to my Talkupation if you enjoyed my post. Thank you :)
.

Last edited by OmuCuSucu; 05-14-2005 at 12:33 PM..
OmuCuSucu is offline
Reply With Quote
View Public Profile
 
Old 05-14-2005, 01:15 PM
praveen's Avatar
Life is a Dream

Posts: 3,591
Name: Praveen
Location: Chennai, India
Trades: 0
hello OCS

Quote:
if you would have to show a list of users with details, ok a table goes well since that is tabular data. but to create the outlines of an entire page using tables is not logical.
yes and a no.

you can use the tables as a external skeleton and dont have to assign any values to the width or height and instead you can id them.

yes, you can position them arnd the page as you can do with a div/layer tag.. but again if the designer is sure and wants that kinda fixed layout. then he can go abt assigning ids them and then define the ids in the css and go about setting the attributes to them there.

only difficulty in this and i would have agree with you is that if in the future they would like to tweak the design, change the contents arnd blah...... then they have to change the structure of the layout all together..

if they had used css positioning.. all it takes changing the x n y coordinates for those tags/ids.

end of it, its is left to the designer who is gonna create the site and requiement specs he has with him.

if he feels comfortable aving a skeleton table, fair enough.. if he is comfortable with a tableless layout, that perfectly makes sense as well.

different needs + designer choice = different types of layouts.




oh, just for record,

we are talking abt CSS-P and not CSS.. there is a lot of difference to them


but again,

for those who think i am against css layouts.. i am not.

the benefit of using a css layout is
Quote:
taken from another place
One of the (many) advantages that css has over table layouts is that the browser will render the content of each div as it sees them, whereas with a table layout the browser will go through every item held within the <table></table> tags before beginning to load them.
So, while the amount of bytes of html used is similar, when it comes to the browser rendering the content, a layer based layout will render quicker, and item at a time, than a table based one



its best said over here

http://www.andybudd.com/archives/200...sign/index.php


i am just gonna steal his conclusion

Quote:
Conclusion

Web standards and CSS based design are defiantly the way forward. However in our rush to advocate these “new” techniques, we may end up believing our own hyperbole. Build something up enough and the reality will always fall short of our expectations. By taking a dogmatic approach we risk alienating the very people we are trying to convince.

Table based design will be around for a long time. To encourage developer buy-in we need to lead by example and help reduce the barriers to entry. Not create new barriers. We need to be honest and up-front about the benefits as well as the cost. Developing CSS sites can be hard and it can time consuming. In certain circumstances using tables for layout can make much more sense than CSS.
but do check out his full article.. wonderful insight into this topic
__________________

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE

Last edited by praveen; 05-14-2005 at 01:23 PM..
praveen is offline
Reply With Quote
View Public Profile
 
Old 05-14-2005, 09:57 PM
marcgo15's Avatar
Experienced Talker

Posts: 37
Trades: 0
It is very misleading. It's kind of a waste of time to read.
marcgo15 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Interesting CSS and HTML article (pros and cons). Those using heavy CSS read this!
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.34225 seconds with 12 queries