Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 872 Bytes

File metadata and controls

19 lines (16 loc) · 872 Bytes
title layout description permalink page_title sidenav
CSS Dependence
post
How we deal with CSS
/accessibility/css/
CSS dependence
accessibility

CSS dependence just means site shouldn't rely on CSS to be functional or understandable. Often sites will use CSS to load important images for example. This is bad for several reasons. Background images can't be tagged for accessiblity and with CSS turned off they aren't shown.

The other issue that pops up with CSS dependence is content order. Sometimes, content will be arranged on screen with CSS instead of the natural code flow.

Testing

  1. Disable CSS.
  2. Check for missing information (images, text, etc).
  3. Check for code or other items the developer doesn't want you to see.
  • Confusing elements shouldn't be present such as CSS, JavaScript, or other code, etc.
  1. Check for overlapping text.