-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmixed-list-items.html
More file actions
32 lines (32 loc) · 921 Bytes
/
Copy pathmixed-list-items.html
File metadata and controls
32 lines (32 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mixed List Item Mark-Up</title>
</head>
<body>
<h1>Mixed List Items</h1>
<p>This page uses a div with a role of "list", with the first item being a div with a role of listitem and the second and third items being standard li elements. The second and third items are inside an ul with <pre>role="presentation"</pre>.</p>
<section aria-labelledby="featured">
<h2 id="featured">Featured Content</h2>
<div aria-labelledby="featured" role="list">
<div role="listitem">
<h3>The First Card</h3>
<p>Card 1</p>
</div>
<div id="the-listing-component">
<ul role="presentation" style="list-style: none">
<li>
<h3>The Second Card</h3>
<p>Card 2</p>
</li>
<li>
<h3>The Third Card</h3>
<p>Card 3</p>
</li>
</ul>
</div>
</div>
</section>
</body>
</html>