Announcement

Collapse
No announcement yet.

Wed designers / programmers / authors - read this!

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #61
    Originally posted by Asher

    Oh...my...God.

    Words cannot describe the depths of your stupidity.

    I'm so amazed that you seem to think pretty highly of yourself when it comes to technology, but just about every technology thread you post in, you are severely misinformed or misguided, or generally confused. It's like you're in your own little world...
    Ah yes, personal attacks.

    What else is new? You can't refute my arguments, so you resort to attacking me.

    (\__/) 07/07/1937 - Never forget
    (='.'=) "Claims demand evidence; extraordinary claims demand extraordinary evidence." -- Carl Sagan
    (")_(") "Starting the fire from within."

    Comment


    • #62
      There's no argument to refute, all you've done is thrown out patently ridiculous rhetoric like:
    • Leading web developers do not design their pages to render in IE.
    • CSS is faster, because you can do in a couple lines what takes many in HTML (any basic compsci statement would laugh at you for such logic, but you never cease to amaze me)

      So no, I can't refute your arguments, because they simply don't exist...

      If you're going to assert that CSS is faster than HTML, step up and provide some evidence.

      Your "logic" behind why it's faster is incredibly silly, because we can apply the same one to state Java is faster than x86.
    "The issue is there are still many people out there that use religion as a crutch for bigotry and hate. Like Ben."
    Ben Kenobi: "That means I'm doing something right. "

    Comment


    • #63
      I believe it depends on the page, and the author.

      Intricately nested tables forces the browser to evaluate numerous levels of widths and alignments. Using too many styles, especially nested subclasses, can have the same effect. Both slow down rendering.

      In my own experience, with well implemented CSS, there is usually a small performance improvement (assuming the original non-CSS version was well crafted). I say "well implemented" because I have seen stylesheets that were crazy, bloated, and just as inefficient as bad table layouts.

      Comment


      • #64
        Originally posted by Ted Striker
        It will load faster and has a greater chance of success of loading correctly on every browser.
        Are you nuts? Sites that rely on tables tend to be much, much heavier in filesize.

        As for correctness, it depends on what you are worried about. Tables will degrade better to Netscape4, but CSS will degrade better to Netscape1, Mosaic, etc. because the content will be in a logical sequence. Also, screen readers have a much easier time of dealing with CSS-based layouts.

        Who cares about Netscape4 anyways? Mozilla already has a larger market share and Opera has a very, very good engine that's far better than MSIE6's engine with a lighter weight than Netscape4's engine.:P

        Plus it's easier to edit
        Whatever you are used to is easiest.
        Blog | Civ2 Scenario League | leo.petr at gmail.com

        Comment


        • #65
          I still think that tables are just as vital as good css. Like everything, the're good in moderation .

          View: communityhigh.org
          Standard design, made good using BOTH.
          cIV list: cheats
          Now watch this drive!

          Comment


          • #66
            Originally posted by Smiley
            Which one yields a smaller file size?
            With CSS, attributes can be specified once and then reused.

            Instead of:
            font face="blah, blah, blah, blah" size="blah" blah="blah"
            font face="blah, blah, blah, blah" size="blah" blah="blah"
            font face="blah, blah, blah, blah" size="blah" blah="blah"
            font face="blah, blah, blah, blah" size="blah" blah="blah"
            font face="blah, blah, blah, blah" size="blah" blah="blah"
            font face="blah, blah, blah, blah" size="blah" blah="blah"
            font face="blah, blah, blah, blah" size="blah" blah="blah"
            font face="blah, blah, blah, blah" size="blah" blah="blah"
            font face="blah, blah, blah, blah" size="blah" blah="blah"

            You have:
            .blah {
            font-family: blah; font-size:blah;text-decoration:underline;
            }
            span class="blah"
            span class="blah"
            span class="blah"
            span class="blah"
            span class="blah"
            span class="blah"
            span class="blah"
            span class="blah"
            span class="blah"

            CSS is much, much easier to update and saves enormous amounts of bandwidth on even moderately elaborate sites.

            You can also then do neat stuff like:
            .blah:first-letter {
            font-size:42pt;
            }
            .blah:hover { // only works in good browsers
            letter-spacing:1px;
            background:#44E;
            }
            Blog | Civ2 Scenario League | leo.petr at gmail.com

            Comment


            • #67
              Exactly... A well-designed CSS/XHTML website has all the style aspects in the style sheet, which means changing the look of your site is easy.

              Plus, to the best of my knowledge, Microsoft is a member of the W3C. That should mean they encourage web standards, and you can assume it means that whenever their next version of IE will come out (along with Longhorn in 2005, presumably), it will fully support CSS2 and XHTML1 and probably have at least rudimentary support for XHTML2 by then.

              Apart from that, CSS also allows many more things that weren't possible before, at least not without scripting.

              When the CSS fails, the page still holds together, when the table fails, the page falls apart.

              And rendering speed is a non-issue.

              Considering all other major browsers are striving for standards compliance, that pulls away the only foot you have left to stand on.
              Civilization II: maps, guides, links, scenarios, patches and utilities (+ Civ2Tech and CivEngineer)

              Comment


              • #68
                Originally posted by Mercator
                Considering all other major browsers are striving for standards compliance,
                cIV list: cheats
                Now watch this drive!

                Comment


                • #69
                  OK well... "major", but I'm pretty sure there are dozens of browsers I've never heard of, so I'm talking about Opera and Mozilla (considering Netscape just died).

                  They can only gain ground in the next few years.
                  Civilization II: maps, guides, links, scenarios, patches and utilities (+ Civ2Tech and CivEngineer)

                  Comment


                  • #70
                    I was lol'ing cause I was thinking of IE and the netscape the schools use.
                    cIV list: cheats
                    Now watch this drive!

                    Comment


                    • #71
                      i use simple tables to surround a sub-title
                      check out zybex.com
                      then go to classes and events and then the link at the bottom. that is the one page i've done so far. (the rest of the mess isn't mine!)
                      "Speaking on the subject of conformity: This rotting concept of the unfathomable nostril mystifies the fuming crotch of my being!!! Stop with the mooing you damned chihuahua!!! Ganglia!! Rats eat babies!" ~ happy noodle boy

                      Comment


                      • #72
                        Let's see, on one hand we have a group of professional web designers saying CSS is superior to tables. On th other we have a couple people saying tables are faster and better.



                        ESPN went to an all CSS layout for a reason, and not because it was slower and worse. They get 40 million hits a day. I think maybe they know something you don't, which is what we've been trying to tell you.
                        Christianity: The belief that a cosmic Jewish Zombie who was his own father can make you live forever if you symbolically eat his flesh and telepathically tell him you accept him as your master, so he can remove an evil force from your soul that is present in humanity because a rib-woman was convinced by a talking snake to eat from a magical tree...

                        Comment


                        • #73
                          It's no accident that CSS was instantly embraced by professional designers and developers when it was first released.

                          Before CSS, it's impossible to maintain any website of reaonable size (I don't mean a couple of pages) with some layout elements using tables, esp. when the layouts are complex. Any changes had to propagate through tens if not hundreds of pages. Sure, WYSIWYG editors and preprocessors helped, but the problem was still there.

                          CSS solved it elegantly.
                          (\__/) 07/07/1937 - Never forget
                          (='.'=) "Claims demand evidence; extraordinary claims demand extraordinary evidence." -- Carl Sagan
                          (")_(") "Starting the fire from within."

                          Comment


                          • #74
                            ESPN went to an all CSS layout for a reason, and not because it was slower and worse.
                            ****e that's a lot of javascript.And there is one table

                            I still say that tables are just fine- unless you're in a real serious web design situation.
                            cIV list: cheats
                            Now watch this drive!

                            Comment


                            • #75
                              And I'll call your espn.com and raise you cnn.com
                              cIV list: cheats
                              Now watch this drive!

                              Comment

                              • Working...
                                X