Layout - ListItem
Pointed out by @andreas_zettl - list items as float don't align correctly.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>left-right.html</title>
<style>
@page {
size: 200px 200px;
margin: 5px;
}
html {
font-size: 12px;
color: black;
}
li:nth-child(2n+1) {
float:left;
width: 50%;
clear: left;
background: #dedeb8;
}
</style>
</head>
<body>
<ol>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
</ol>
</body>
</html>