Tags
access-university Accessibility accessu activex ads air-austin apple Austin bad-design beer blogging campaign captions css death design documentation edwards firefox geeks giuliani java Javascript joe-clark john slatin knowbility macintosh magpie mccain panama Portfolio quicktime realplayer redesign refresh austin romney runes sxsw sxswi sxsw interactive taboga wcag web design WordPress xhtmlArchives
Category Archives: css
Owltastic — by Meagan Fisher
Also posted in Asides, CSS3, Web Design, design, examples, inspiration, webdev Comments closed
Automatic merging and versioning of CSS/JS files with PHP – Ed Eliot
Also posted in Asides, Javascript, optimization, php Comments closed
CSS Redundancy Checker
Also posted in Asides, checker, optimization, redundancy, tool Comments closed
11 Useful Tools To Check, Clean & Optimize Your CSS File
Also posted in Asides, optimization, tools, webdev Comments closed
Using jQuery to mimic CSS3’s :nth-last-child
I came across the need for using CSS3’s :nth-last-child pseudo-selector recently. What does this do? Nth-last-child lets you select the nth (2nd, 3rd, 4th, etc) child of some element starting from the last one. For example:
li:nth-last-child(-n+4) would select the last four list items in a list.
To style the 2nd-to-last list item only, this example would [...]