Direct link to the article Weekly Platform News: CSS column-span Property, ADA applies to Websites, Auto-generated Image Descriptions

Weekly Platform News: CSS column-span Property, ADA applies to Websites, Auto-generated Image Descriptions

In this week’s roundup: multi-column layouts gain wide support, the ADA means more A11y for retailers, and Google is doing something about all the empty image alt attributes in the wild.…

Avatar of Šime Vidas
Šime Vidas on (Updated on )

column-count

If you need an exact numbers of columns when designing a multi-column layout, use column-count.

.lead {
  column-count: 3;
 }

Given the number of columns, the browser will evenly distribute the content in exactly that number of columns.

This …

Avatar of Katy DeCorah
Katy DeCorah on (Updated on )