I'm trying to create a timeline similar to Facebook's timeline, i.e. I want a timeline with two columns where I can place elements on the left and on the right.
In order to do so, I started with the following code but it does not work as expected:
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
</head>
<body>
<ul>
<li>Test 123</li>
<li style="float:left">Foobar</li>
<li>Another test</li>
</ul> /*This line was missing*/
</body>
</html>
The element in the middle is not displayed on the left beside that, the last element floats into the middle one.
Has someone an idea how to create a timeline similar to facebooks one?
