RewardJS

Direct Link

Fix a bug. Get a prize.

A site to incentivize helping out on open source JavaScript projects. Every single day there is a prize that someone earns through sheer number of bug fixes closed. Also weekly and monthly prizes on …

Avatar of Chris Coyier
Shared by Chris Coyier on (Updated on )

Personal Blogs of Web People That I Like To Read

My favorite blogs are personal blogs of one person. I like it when blogs "have a voice" and personal blogs can't help but have that since all the writing is by the same person. I read a bunch of them and I thought I'd share. Below is a big ol' list that are specifically people that blog, generally, about web stuff - be it design, development, entrepreneurship, typography, business, illustration, whatever. You probably know a lot of them. Maybe some of them you don't.
Avatar of Chris Coyier
Chris Coyier on (Updated on )

FitText

Direct Link

FitText makes font-sizes flexible. Use this plugin on your fluid or responsive layout to achieve scalable headlines that fill the width of a parent element.

Super simple, super nice effect, super practical jQuery plugin by Dave Rupert.

You need to …

Avatar of Chris Coyier
Shared by Chris Coyier on (Updated on )

CSS Regions Demos

Direct Link

Adobe has put together some pretty compelling demos of “CSS Regions.” Download the package and run the included “Mini Browser” to see them. You define shapes (kinda like an image map) in which content flows. If needed, you define how …

Avatar of Chris Coyier
Shared by Chris Coyier on

Gradient Underlines

a {
  position: relative;
  padding-bottom: 2px;
  text-decoration: none;
}

a:hover::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #444;
  background: linear-gradient(left, transparent 0%,#444 50%,transparent 100%);
 }

See the Pen Gradient Underlines by Chris Coyier …

Avatar of Chris Coyier
Chris Coyier on (Updated on )

Masonry CSS

Direct Link

Simple and damn clever idea by Radu Chelariu. Use multiple columns and inline-block elements to create that “masonry” / staggered block layout that is hugely difficult to do otherwise.

This link is offline now, so I’m changing it to this

Avatar of Chris Coyier
Shared by Chris Coyier on (Updated on )

Case Study: jQuery Fixer Upper

We'll look at some jQuery code that a CSS-Tricks reader posted in the forums. We'll suggest ways to improve the code to make it more efficient and more extensible. We'll also make some guesses about the HTML that it goes with and discuss improvements there.
Avatar of Chris Coyier
Chris Coyier on (Updated on )

Window Inactive Styling

Using some non-standard pseudo selectors, you can change the styling of things when the browser window is inactive. The only "practical" use right now is text selection colors, which automatically do this unless you override it. But we'll fix that!
Avatar of Chris Coyier
Chris Coyier on

Outer Border Radius Tabs

Direct Link

Imagine a real-life tabbed folder. The tabs on those aren’t only rounded at the top of the tab, but they also connected to the folder with a rounded edge. Top corners, easy, just border-radius. Bottom corners, not so easy. …

Avatar of Chris Coyier
Shared by Chris Coyier on (Updated on )