GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   CSS: good or bad? I think it's shit (https://gfy.com/showthread.php?t=981626)

DanielS 08-09-2010 05:42 AM

CSS: good or bad? I think it's shit
 
Building sites for almost 10 years using editors like dreamweaver, and now I'm editing a site full of <div> tags and it looks like shit when I open it in dreamweaver.

So, should I use the old loved tables OR what's the best 'What you see is what you get' editor for CSS?

What's the point of CSS? I find it usefull ONLY for font styles. Nothing else.

Thanks!

StinkyPink 08-09-2010 05:46 AM

I hate it. I am not that good at editing divs especially putting images where I want them. It makes it hard to edit my script templates etc.

Ron2k1 08-09-2010 05:49 AM

Any serious webdeveloper will use CSS, when used correctly it keeps the HTML code clean and it's much better for search engine positions

DanielS 08-09-2010 05:49 AM

Quote:

Originally Posted by StinkyPink (Post 17401711)
I hate it. I am not that good at editing divs especially putting images where I want them. It makes it hard to edit my script templates etc.

That's why I love tables!

TeenCat 08-09-2010 05:51 AM

old good html and css for styles forever! :thumbsup

Serge Litehead 08-09-2010 06:20 AM

yes

cleaner and lighter html
layout and decorative rules cached in separate file
no waiting till tables fully load
reusable class rules

is da shit!

munki 08-09-2010 06:22 AM

This thread makes me absolutely shudder... learn your fucking tools.

TeenCat 08-09-2010 06:27 AM

Quote:

Originally Posted by munki (Post 17401754)
This thread makes me absolutely shudder... learn your fucking tools.

learn what? because you learn it at highschool it means it is the best? i think we are here for money, tool

james_clickmemedia 08-09-2010 06:33 AM

css is great. stick all that code in a seperate file and call it into the main html file. Why repeat the same code on all your html files when you can do it once with css...

XML on the other hand is a big pain in the ass for us.. Smarty templates are way easier....

Doug E 08-09-2010 06:59 AM

The only flaw css had was IE, you had to use tables as ie7 and lower couldnt handle divs only, among other hacks but only cuz of IE. The standards compliant browsers were no problem. Still, guys using anything under ie8 will have a problem but theyll disappear soon. Ive a few sites that are div only, no tables and theyre a lot easier to work with than tables. table tr td /td /tr /tableall the time gets monotonous. Divs unclutter your pages big time. And thats just what divs can do for you. The full benefits of css are too many to be discussed in one post.

MonsterMike 08-09-2010 07:03 AM

Its worth taking the time to learn it. I was getting frustrated with positioning using DIVs so I just used CSS for style elements until I got the hang of it.

Now I am starting to make sense of why DIVs are so much better than tables as I get more into CSS for layout.

JamesK 08-09-2010 07:07 AM

It's awesome once you master it. Like others mentioned, it is easier to manage (even after it's integrated it's fairly easy to make major changes, unlike with tables) and saves a lot of KB's. I was skeptical too once, but now that I know it in and out I can't live without it. I do however think tabular data belongs in tables. Many seem to completely boycott tables just because they heard the term "tableless layouts".

Also, if you're coding in Dreamweaver just hit F12 to preview the code in your default browser. I barely ever use the "design view" anymore as it's pretty much useless.

Kiopa_Matt 08-09-2010 07:09 AM

I'd suggest you drop Dreamweaver, and learn CSS.

When it comes to technology, sink, swim, or lead the pack. Take your pick.

crazytrini85 08-09-2010 07:41 AM

Do whatever you do best.

More money was made with sites who used tables, than sites that didn't. Lots of big sites use a mixture of the two I'm seeing.

closer 08-09-2010 07:48 AM

CSS combined with jQuery is just rocking big time

grumpy 08-09-2010 10:52 AM

this can only be done by css and will never work with tables
http://www.bimbolinks.com/

resize your window

JD 08-09-2010 12:28 PM

css > everything

Ron Bennett 08-09-2010 12:32 PM

The GFY forum uses tables for layout.

Ideally, CSS can be used for both style and layout with many websites having gone completely CSS.

However, some sites continue to holdout due to old browsers and various CSS quarks that make some layouts difficult to do in CSS. Three column layouts in CSS is challenging - it can be done, but takes some skill and testing to ensure it stays three columns, while with tables it will stay three columns pretty much no matter what.

Some posters above mention putting CSS data in a separate file - yep, that's commonly how it's done, but not always. vBulletin puts the CSS info into every page. And there are some good reasons for doing that ... if the CSS file doesn't load in time and/or the CSS frequently changes, the user will see a very bad looking page, likely displaying everything in bland colors all in one long column.

Ron

Jason Voorhees 08-09-2010 12:46 PM

Tables are for tabular data. That being said, don't go for how it looks in your editor, but how it looks in your users browser...

I use dreamweaver, mostly because I've used it for years, but I also don't really use anything other than code view...

BarryP 08-09-2010 12:49 PM

In the name of SEO & Usability, use CSS!

Bird 08-09-2010 12:59 PM

10 years html and you hate CSS, that's just foolish.

Why don't you just use microsoft front page then.

TeenCat 08-09-2010 01:02 PM

but here, of course depends on the site. if you have some free page or forum, html is enough, if you have some bigger portal, css and divs of course! :2 cents:

DigitalTheory 08-09-2010 01:06 PM

Quote:

Originally Posted by JD (Post 17402512)
css > everything


:2 cents:

Ron Bennett 08-09-2010 01:12 PM

Quote:

Originally Posted by BarryP (Post 17402574)
In the name of SEO & Usability, use CSS!

GFY uses tables for layout ... so it must be UNusable? :winkwink:

IMHO, just because table layouts are considered passe in the web designer realm, they're still a worthwhile tool nevertheless. Unlike CSS, table layouts can be very simple, and more importantly, tend to display more consistently in most all graphical web browsers regardless of screen resolution.

Ron

2012 08-09-2010 01:14 PM

Quote:

Originally Posted by DanielS (Post 17401708)
Building sites for almost 10 years using editors like dreamweaver, and now I'm editing a site full of <div> tags and it looks like shit when I open it in dreamweaver.

dreamweaver :1orglaugh


Serge Litehead 08-09-2010 01:26 PM

Quote:

Originally Posted by Ron Bennett (Post 17402520)
Ideally, CSS can be used for both style and layout with many websites having gone completely CSS.

I think this is a common misinterpretation. You can't go completely to CSS as HTML is also required. Tables can utilize CSS just as well as DIVs, there's less flexibility with tables (because of their own nature) but that's not to say Tables and CSS can't and don't work together. CSS is useless without some form of markup language.

what I'm meaning to say CSS is not vs. TABES; it's TABLEs vs. DIVs and making the right decision which best suits your needs: divs=layout structure & tables=tabular data. styles can be applied in both cases.

Mr. Cool Ice 08-09-2010 02:10 PM

I use tables in many areas of my sites and dominate the search engines for my terms. I only use CSS for text, backgrounds and colors.

grumpy 08-09-2010 02:44 PM

Quote:

Originally Posted by holograph (Post 17402669)
I think this is a common misinterpretation. You can't go completely to CSS as HTML is also required. Tables can utilize CSS just as well as DIVs, there's less flexibility with tables (because of their own nature) but that's not to say Tables and CSS can't and don't work together. CSS is useless without some form of markup language.

what I'm meaning to say CSS is not vs. TABES; it's TABLEs vs. DIVs and making the right decision which best suits your needs: divs=layout structure & tables=tabular data. styles can be applied in both cases.


i second that

Serge Litehead 08-09-2010 02:50 PM

Table is a basic 'instrument' for a grid mark-up, if that's all you need from html don't let anyone else tell you otherwise, use what works best for you. Although tables are a bit messy to look at in the source, thats coming from someone who used to love tables in the past. Styles won't hurt though.

harvey 08-09-2010 02:53 PM

Quote:

Originally Posted by Ron Bennett (Post 17402520)
The GFY forum uses tables for layout.

Ideally, CSS can be used for both style and layout with many websites having gone completely CSS.

However, some sites continue to holdout due to old browsers and various CSS quarks that make some layouts difficult to do in CSS. Three column layouts in CSS is challenging - it can be done, but takes some skill and testing to ensure it stays three columns, while with tables it will stay three columns pretty much no matter what.

Some posters above mention putting CSS data in a separate file - yep, that's commonly how it's done, but not always. vBulletin puts the CSS info into every page. And there are some good reasons for doing that ... if the CSS file doesn't load in time and/or the CSS frequently changes, the user will see a very bad looking page, likely displaying everything in bland colors all in one long column.

Ron

GFY uses a SCRIPT that is good at some things and HORRIBLE at others. Including the visual aspect. The fact that VB guys are ignorant on the subject doesn't mean what they do should be taken as god spell, it only mean they're ignorant :2 cents:

mafia_man 08-09-2010 04:47 PM

Quote:

Originally Posted by munki (Post 17401754)
This thread makes me absolutely shudder... learn your fucking tools.

Just fucking dinosaurs.

I read on Slashdot how porn is 'cutting-edge' and a leading industry that decides format wards. Bullshit, porn had a hand in the VHS/Betamax war and that's it. Porn chose HD-DVD which failed.

Fucking guys using tables for layout! Bad for SEO. Bad for maintenance.

munki 08-09-2010 08:07 PM

Quote:

Originally Posted by mafia_man (Post 17403229)
Just fucking dinosaurs.

I read on Slashdot how porn is 'cutting-edge' and a leading industry that decides format wards. Bullshit, porn had a hand in the VHS/Betamax war and that's it. Porn chose HD-DVD which failed.

Fucking guys using tables for layout! Bad for SEO. Bad for maintenance.

I'm coming from this school of thought. CSS is a tool... one of many that a webmaster/developer should have in his arsenal... I will never get involved in the the tables vs CSS debate... simply because neither side is a well rounded argument. One is not better then the other by the very nature of what they accomplish.

They are tools... Learn how to use the right one for the right situation. You don't use a hammer drive in your Phillips head screws do you? At one point people used handsaws, and now people use power saws. You wouldn't try to hand sand something if you had a power sander next to you would you? Learn your tools, and use the correct ones.

I've been dealing with CSS layouts for close to 13 years now... before it was a fad. I also still use tables, as well as many aspects of html/php/css/asp that many fail to ever learn properly. Because something is popular vernacular doesn't mean you should hop on the fanboy bandwagon without knowing your tools through and through.

Jaeger 08-09-2010 08:13 PM

i hate it... only the trendy kids use it anyway.. screw them

SomeCreep 08-09-2010 08:18 PM

CSS is the shizzy my nizzy.

Angry Jew Cat - Banned for Life 08-09-2010 08:19 PM

writing css in notepad, is easier than point and click wysiwig builders. seriously....

sortie 08-09-2010 08:25 PM

Quote:

Originally Posted by mafia_man (Post 17403229)
Fucking guys using tables for layout! Bad for SEO.


Do you have a google link that explains this concept?

Young 08-09-2010 09:13 PM

Tables? lol. Is this 1998? Are you going to fill your tables with animated GIF's?

Use tables for what they were made for...tabular data.

And if you're going to call yourself a webmaster...learn how to fucking code for christ's sake. Stop using WYSIWYG editors.

This thread infuriates me...which means I really need to get a hobby.

Sid70 08-10-2010 12:38 AM

We just need a good WYSIWYG editor for CSS and especially for WordPress, local wordpress stuff testing without installing the server and such. And this discussion will be over.

Amputate Your Head 08-10-2010 12:39 AM

Everything in moderation. :)

munki 08-10-2010 12:44 AM

Quote:

Originally Posted by Amputate Your Head (Post 17403984)
Everything in moderation. :)

especially moderation...

Zorgman 08-10-2010 12:57 AM

css has it's place, but so do tables. I use both - not for the same thing. :)

TeenCat 08-10-2010 02:25 AM

tables bad for seo, lol at you experienced pros :upsidedow

bns666 08-10-2010 02:57 AM

css for layouts. tables for tabular data.

Naechy 08-10-2010 03:03 AM

CSS, very good, i will use it forever

pythonx 08-10-2010 03:09 AM

lol, saying "I hate CSS" is pretty much the same as: "I have no fucking clue what I'm doing"

grumpy 08-10-2010 03:10 AM

very easy and simpel css editor ( free )
http://www.softpedia.com/progDownloa...oad-93747.html

AlCapone 08-10-2010 03:36 AM

Just because you are too stupid to use CSS effectively and never bothered to keep up with the times does not mean it validates your uneducated opinion, in fact, it validates you as being a short sighted ignorant moron.

AlCapone 08-10-2010 03:37 AM

Quote:

Originally Posted by bns666 (Post 17404077)
css for layouts. tables for tabular data.

You can use CSS for tabular data also.

bns666 08-10-2010 03:39 AM

Quote:

Originally Posted by AlCapone (Post 17404115)
You can use CSS for tabular data also.

I know, but just in general way of speaking :)

mgtarheels 08-10-2010 03:41 AM

Quote:

Originally Posted by TeenCat (Post 17404050)
tables bad for seo, lol at you experienced pros :upsidedow

You're such a moron.


All times are GMT -7. The time now is 04:34 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc