A user using a braille machine with a computer.
Direct link to the article Demystifying Screen Readers: Accessible Forms & Best Practices

Demystifying Screen Readers: Accessible Forms & Best Practices

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out “Managing User Focus with :focus-visible“. In this post we are going to look at using a screen reader when navigating a form, and also some best practices. Editor’s Note: Edits were made throughout […]

Avatar of Chris DeMars
Chris DeMars on (Updated on )
Direct link to the article container

container

The CSS container property is a shorthand that combines the container-name and container-type properties into a single declaration.

.parent {
  container: cards-grid / inline-size;

  /* Equivalent to: */
  container-name: cards-grid;
  container-type: inline-size;
}
Constituent properties

The container property is a …

Avatar of Geoff Graham
Geoff Graham on
Keep browsing in the archives