How Our CSS Framework Helps Enforce Accessibility

Avatar of Chris Coyier
Chris Coyier on

DigitalOcean provides cloud products for every stage of your journey. Get started with $200 in free credit!

Ian McBurnie:

A user interface control not only needs to look like a certain control, it must be described as that control too.

What if we could also write our CSS framework in a way that acts as another layer in our line of defense? Read on to find out how!

One of the tricks:

[role=button].btn {
  /* Gotta be the right role before it gets the styles */
}

Direct Link →