Site icon

Experiment with Site Design for People with Cognitive Disabilities

I created my first Web site design intended to be used by people with cognitive disabilities.  It is only a first draft, but it employs many of the cognitive-accessibility attributes I have been discussing since I started this blog.

This post focuses on the CSS-based layout. Subsequent posts will describe the new text-size switcher experiment and the image-based menu.  The test page itself has a list of text-accessibility features.

The motivator for this draft was a desire for a two-column design that would not break no matter how much text size is increased.  To accomplish this, I used a hybrid of elastic- and fluid cascading style sheets (CSS) layouts.

Elastic Layout Definition

An elastic page layout scales as text size is changed.  To do this, the height and the width of a page’s main CSS container and other elements are defined by a unit of measure known as an “em”. Since ems are proportional to text size, containers and elements measured by them adjust themselves relative to changes in text size.

Fluid Layout Definition

A fluid layout, otherwise known as a liquid layout, adjusts itself to fit the size of the window in which it is being viewed.  By using CSS container sizes based upon percentages, fluid designs typically take up an entire window without producing a horizontal scroll bar.

Combined Layouts

The body of the test page has a width of 56 em. The two columns, “primary” and “sidebar” have widths of 65 percent and 30 percent respectively.  The combination of the widths for the body and for the primary column means that lines of text, no matter how large, will not be longer than 80 characters.  This is a best practice of cognitive accessibility.

The remaining 35% of the body width is taken up by the margin space (5%) between the two columns and by the sidebar / menu column.  This is enough room to enable the menu text to be enlarged without breaking the page design.

Design Problems

Notes


Exit mobile version