Which is the best book for Advanced CSS ?

Discussion in 'CSS' started by Axus Technologies Inc., Dec 5, 2009.

  1. #1
    Hi..

    I know CSS, but I have seen there are like 500 CSS properties and I dont know all of them.
    Also, earlier this year, many new things has been introduced in CSS3 and all.

    So, which book can give me all ?
    Starting from font-weight to zindex property descriptions and examples pictured. ;)

    So, anyone knows any good book for that ??
     
    Axus Technologies Inc., Dec 5, 2009 IP
  2. Avidbrowser

    Avidbrowser Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Ultimate CSS reference by sitepoint.
     
    Avidbrowser, Dec 5, 2009 IP
  3. jwitt98

    jwitt98 Peon

    Messages:
    145
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #3
    CSS The Missing Manual is very good.
     
    jwitt98, Dec 6, 2009 IP
  4. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #4
    Actually, you're off by a factor of five. There are 99 css2.1 properties. :)

    You can get full descriptions, usages, and examples at W3's CSS Full Property Table. You can find the same info for css3, but not as straight forwardly, since the specification is still being written.

    cheers,

    gary
     
    kk5st, Dec 8, 2009 IP
  5. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #5
    That link would increase in awesomness if it then listed how many browsers actually support it. You know, I drooled when I saw display: run-in. Of the 99 CSS properties, the developer needs only to know the ones that actually do something in one or more browsers.
     
    Stomme poes, Dec 9, 2009 IP
  6. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #6
    Yeah, me too. I've been following Moz's bug tracker on this. The issue's are surprisingly complex. Webkit, Presto, and IE8 have all implemented the property to one extent or another; each failing various test cases.

    Looks like there will be a wait for a usable level of implementation. Grab a seat in the bar, and make yourself comfortable.

    cheers,

    gary
     
    kk5st, Dec 9, 2009 IP
  7. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #7
    That's new to me, not that I've kept up with it... last I heard, some version of Opera sometimes did something with it... actually, I might have seen a Demo Of Suck at Brunildo or somewhere. Or maybe it was ppk's page...

    Actually, I'm surprised you'd like run-in as well... since that looked to me to be something from the Print World much like the idea of a Sticky Footer. We're always saying, The Web's Not Print etc...
     
    Stomme poes, Dec 10, 2009 IP
  8. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #8
    Not even similar. Consider this:
    
    <dl>
      <dt>Hacker</dt>
      <dd>A really smart coder</dd>
    </dl>
    ===================
    dt {
      font-weight: bold;
      display: run-in;
      }
    
    dt:after {
      content: ":\a0\a0";
      }
    
    dd {
      margin-left: 0;
      }
    Code (markup):
    Which should render like so:

    Hacker: A really smart coder

    cheers,

    gary
     
    Last edited: Dec 10, 2009
    kk5st, Dec 10, 2009 IP