blob: 74f5c37d678ed4e5bc13b57f9b5f033b29fe6931 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE HTML>
<html>
<head>
<title>Reference for reordered 'li' flex items</title>
<style>
.container {
display: flex;
flex-direction: column;
}
</style>
</head>
<body>
<ol class="container">
<div>4. List item 4</div>
<div>2. List item 2</div>
<div>3. List item 3</div>
<div>5. List item 5</div>
<div>6. List item 6</div>
<div>8. List item 8</div>
<div>1. List item 1</div>
<div>7. List item 7</div>
</ol>
</body>
</html>
|