Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

made stylization more consistent #91

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions slides/02-Developers/05-list.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ layout_data:
description: |
The list below uses ARIA roles to express the semantics of a list from a generic div structure.
This approach to expressing list structure can be used if it is not possible to use the native
HTML list tags.
HTML ```list``` tags.

Notice that the default list styling is not applied. That is because the browser's default
stylesheet targets ```ul``` and ```ol``` tags.
Expand All @@ -53,7 +53,7 @@ layout_data:
- title: Unsemantic List exercise
description: |
Update the example below so that the items are expressed as a list. The easiest way to
make this semantic is to use a list tag. If that is not
make this semantic is to use a ```list``` tag. If that is not
possible, wrap the elements in a container and give
it a role of ```list```. The individual items will need to be identified with a role of ```listitem```.

Expand Down