Announcement

Collapse
No announcement yet.

I hate CSS

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

    I hate CSS

    Anyone have a good CSS guide they know of online somewhere?

    I suck at it.
    XBox Live: Alzar2k
    Playstation Network: Alzar2k

    #2
    Re: I hate CSS

    http://www.w3schools.com/css/


    That's where I learned all of the basic CSS. It's goes through one step at a time and there are examples of everything. Very nice. I like it.


    Edit: Wow, totally wrong link.
    Last edited by Chad; 12-04-2006, 08:58 PM.

    "Couch co-op is the only true co-op." Richard of the Cooks.

    Comment


      #3
      Re: I hate CSS

      Hey Alzar, good timing, I actually found a really good CSS tutorial a while back. Taught me everything I needed to know, and it's very clear and easy to understand. Hope it helps!

      Comment


        #4
        Re: I hate CSS

        Everything in my loins tells me that I should learn CSS, but the same loins tell me not to.
        [cen

        Comment


          #5
          Re: I hate CSS

          Originally posted by Czechs Mex View Post
          Hey Alzar, good timing, I actually found a really good CSS tutorial a while back. Taught me everything I needed to know, and it's very clear and easy to understand. Hope it helps!
          waaaiiitt aaa minnnuuuteee ~~ ~ ~~ ~!!!!
          XBox Live: Alzar2k
          Playstation Network: Alzar2k

          Comment


            #6
            Re: I hate CSS

            I too hate CSS. Which is why I discarded it from the pavilion.



            Comment


              #7
              Re: I hate CSS

              I was ready to move this because I thought it was about Counterstrike Source.

              Comment


                #8
                Re: I hate CSS

                CSS is great, but whatevs.

                Comment


                  #9
                  Re: I hate CSS

                  I KNOW ITS GREAT I JUST AM LIKE

                  Hi Div. Go here.

                  And it's like.

                  I'll go here BUT MOVE EVERYTHING ELSE RANDOM PLACES THAT MAKE SENSE

                  and i'm like

                  wtf DIV, i hate you

                  and it laughs at me

                  dreamknight where you learn to make css do what you want
                  XBox Live: Alzar2k
                  Playstation Network: Alzar2k

                  Comment


                    #10
                    Re: I hate CSS

                    Basically I took out a bunch of web design books about a year ago and pieced a lot of it together using that and lots of lots of help from Dreamweavers references....



                    I KNOW THAT REALLY DOESN'T HELP YOU...

                    Comment


                      #11
                      Re: I hate CSS

                      If you do [img] around a url and then put [/img] it lets you put up a picture.
                      The Cyclops having only one eye, needed to seek shelter from the harsh sun. The shadow cast by the spheres gave him temporary respite.

                      Comment


                        #12
                        Re: I hate CSS

                        Well if you want a reference of all of CSS you can try this place as well

                        http://www.devguru.com/Technologies/...css_index.html

                        and for some cool drop downs using just CSS look at this page

                        http://www.htmldog.com/articles/suckerfish/example/

                        And another place I would recommend looking at is http://www.alistapart.com/ good place for general design tips.

                        CSS is great and a lot better than using attributes for every tag. Just give a tag a class or an id and you can set all the attributes using CSS, and you don't have to copy and paste the attributes for every tag with the same ones. Plus if you use it on multiple pages it reduces bandwidth if the browser caches the stylesheet.

                        What sucks is the lack of standards and browsers displaying CSS properly. Though CSS still does some dumb things (especially with measuring the height of float elements without explicitly stating them), but it does a lot of nice stuff that would otherwise require complicated Javascript.

                        Just remember that positioning things absolutely will completely take it out of all automatic placement calculations. Absolute you have to specify the positioning of it explicitly or all absolutely placed elements will start at (0,0). Relatively positioned or the default positioning scheme will place things automatically, so moving any of those elements will also move others.

                        A lot of it is trial and error, but it looks a lot cleaner than using table tags for everything, since tables are supposed to be used for tabular data not layout. To achieve table like layouts the float attribute is your friend, just remember to also use clear once you are on a new line of layout.

                        And the <style> tag is also considered CSS, which the pavilion still has. It's the same as just putting it in an external stylesheet file. What's really fun is using PHP to create your stylesheet page, allowing you to use color definitions by name, put absolute paths to images, and create 3D borders automatically.
                        Last edited by thetruecoolness; 12-05-2006, 02:28 AM.
                        はじめまして。真(しん)の冷静(れいせい)です。どうぞよろしく。
                        http://www.thetruecoolness.com/

                        5198-2124-7210 Smash

                        Comment


                          #13
                          Re: I hate CSS

                          What I meant by "discarded it from the pavilion", is the layout blaze made for me before the site-forum integration used nothing BUT CSS. Considering I didnt know anything about it, I really hated working with that layout. which is good, since most people hated looking at it.



                          Comment


                            #14
                            Re: I hate CSS

                            Originally posted by Valkysas View Post
                            What I meant by "discarded it from the pavilion", is the layout blaze made for me before the site-forum integration used nothing BUT CSS. Considering I didnt know anything about it, I really hated working with that layout. which is good, since most people hated looking at it.
                            Ah, I see.

                            CSS is still better than laying out using HTML and tables or frames (though frames can have their purpose using PHP, divs, or AJAX are better alternatives now). CSS usually leads to cleaner code, though you have to keep up with both the HTML and the CSS, but it makes it easier to design things I think. Mainly because it makes it easier to do repeated elements styles.

                            Of course CSS is much easier to understand if you only use it to style classes and ids. Doing things like

                            li ul li ul li {
                            style info
                            }

                            Makes it really hard to track what that actually effects.
                            ul
                            --li
                            ----ul
                            ------li
                            --------ul
                            ----------li this is the one affected

                            Where as on the one affected you do something like

                            li class = 'third-level menu-option'
                            (means the li is of the class menu-option and third-level)

                            then have style definitions

                            menu-option {
                            // for general menu options
                            }

                            third-level {
                            // special style for the third level
                            }

                            So it's really nice to use once you learn how it works, and what doesn't work correctly with each browser (mainly IE, but others mess things up too).

                            Of course now CSS support is much better, as finally the Web is leaning towards actual standards, and the browsers are finally recognizing them.

                            Basically CSS is a way to define attributes for multiple tags, instead of having to put them in each tag. Also it gets rid of having to use the font tag everywhere (which is now deprecated since HTML 4.0). It just promotes better design to the code behind sites, though you can still write horrible CSS, it's supposed to help you design better.

                            So if you have any specific questions Alzar feel free to put them here, but I would start with w3schools as they have interactive examples. Also I would recommend getting the Web developer toolbar for either Firefox or IE. The one for IE is a bit harder to find but I believe it is on Microsofts website, the Firefox one can be found on the extensions page https://addons.mozilla.org/firefox/60/. I believe both of these let you interactively edit the CSS for the page so you can instantly see your changes.
                            Last edited by thetruecoolness; 12-05-2006, 03:26 AM.
                            はじめまして。真(しん)の冷静(れいせい)です。どうぞよろしく。
                            http://www.thetruecoolness.com/

                            5198-2124-7210 Smash

                            Comment


                              #15
                              Re: I hate CSS

                              That's surprising, that the Pavilion uses no CSS at all.

                              I mean, you don't have to, because it's just tables and text, but damn.

                              It could be so much better.



                              I've got more of an inspirational site for you to check out. There are no tutorials or help, everything CSS can basically be summed up here. It's not that hard. Once you start to understand how CSS works, try seeing how people use it:

                              http://csszengarden.com

                              Oh yeah, and get that AddOn Coolness mentioned. I've had it for years. ****, it's so nice. You can do things like view a page, and Display_Element_Information and it'll highlight every major element on the page, and information about them, for you to mess with in real time. You can validate the HTML, and CSS of a website. ****.
                              Last edited by Alex; 12-05-2006, 04:18 AM.

                              Comment

                              Working...
                              X