Direct link to the article Accessible SVG Icons With Inline Sprites

Accessible SVG Icons With Inline Sprites

Direct Link

This is a great look at accessible SVG markup patterns by Marco Hengstenberg. Here’s the ideal example:

<button type="button">
  Menu
  <svg class="svg-icon"
     role="img"
     height="10"
     width="10"
     viewBox="0 0 10 10"
     aria-hidden="true"
     focusable="false">
     <path d="m1 7h8v2h-8zm0-3h8v2h-8zm0-3h8v2h-8z"></path>
    </svg>
</button>
Avatar of Chris Coyier
Shared by Chris Coyier on

$1,076,940

Direct Link

High five to Dave Gandy and the Font Awesome team:

The Font Awesome 5 Kickstarter raised $1,076,940 with 35,549 backers, making it the most funded and most backed software Kickstarter of all time.

What’s do the funders get? 1,000 more …

Avatar of Chris Coyier
Shared by Chris Coyier on

CSS ICON

Direct Link

Wenting Zhang created 512 (!) icons with just HTML and CSS. Usually just one element, the occasional extra element thrown in, and drawn with things like borders, backgrounds, and box-shadows.

Looks like the same bug bit Wenting that bit Nicolas

Avatar of Chris Coyier
Shared by Chris Coyier on

Icons and Teams

Say you’re working on a website that uses an icon system. Lots of people who work on the site interact with the icon system. Designers create new icons, they tweak existing ones, they have ideas on what they want the …

Avatar of Chris Coyier
Chris Coyier on

How to work with SVG icons

Direct Link

Solid basics of an SVG icon system in this guide from Florens Verschelde, mixed with some good tricks: the two-color trick, pre-loading the sprite, and using custom properties for unlimited color variations. Also an interesting bit about using multiple methods …

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