From 7b403ca5fb8c3ed2db0fb1891c2821cc1567250d Mon Sep 17 00:00:00 2001 From: anadrich Date: Mon, 12 Sep 2016 17:11:09 -0400 Subject: [PATCH] made stylization more consistent --- slides/02-Developers/05-list.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slides/02-Developers/05-list.html.md b/slides/02-Developers/05-list.html.md index 5b42897..8f4b00b 100755 --- a/slides/02-Developers/05-list.html.md +++ b/slides/02-Developers/05-list.html.md @@ -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. @@ -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```.