Flexplorer
CSS
How nth-child Works | CSS-Tricks
There is a CSS selector, really a pseudo-selector, called nth-child. Here is an example of using it: ul li:nth-child(3n+3) { color: #ccc; } What the above
CSS Guidelines
High-level advice and guidelines for writing sane, manageable, scalable CSS
text-shadow | CSS-Tricks
p { text-shadow: 1px 1px 1px #000; } You can apply multiple text shadows by comma separating p { tex...
10up Engineering Best Practices
Philosophy At 10up, we value content and the experience one will have reading it. We write CSS with ...
Sticky Table Headers by position: sticky;
Works with Firefox and Safari, but not Chrome or IE
Retina Display Media Query | CSS-Tricks
For including high-res graphics, but only for screens that can make use of them. "Retina" being "2x": @media (-webkit-min-device-pixel-ratio: 2), (min-reso
Media Queries for iPad, iPad Mini, iPhone
Target an iPad, iPad Mini, iPhone, and other devices specifically with easy to use CSS media queries...
Loading CSS Into WordPress the Right Way - Tuts+ Code Tutorial
Without CSS, you have very limited choices to style your web pages. And without proper CSS inclusion inside WordPress, you can make it extremely hard for your theme's users to customize the theme's...
Understanding CSS z-index
The z-index attribute lets you adjust the order of the layering of objects when rendering content.
3 Things (Almost) No One Knows About CSS
Former SitePoint team member Kevin Yank is back to explain three CSS tidbits that most people get wr...