summaryrefslogtreecommitdiff
path: root/works/floated-list-items.html
blob: d62e4746133ec2631e3dc2c33a56e9a69ab223e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<head>
<style type="text/css">
ol { clear: both; }
ol > li { float: left; width: 5em; }
</style>
</head>
<body>
<ol>
  <li>one
  <li>two
  <li>three
</ol>
</body>
</html>