pope (owner)

Revisions

gist: 203493 Download_button fork
public
Public Clone URL: git://gist.github.com/203493.git
Embed All Files: show embed
example.html #
1
2
3
4
5
6
7
8
<div>
  <ul>
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
    <li>Four</li>
  <ul>
<div>
output.txt #
1
2
One Two
Three Four
screen.css #
1
2
3
4
5
6
7
8
9
10
11
12
13
div {
  width: 500px;
}
 
ul {
  display:inline;
}
 
li {
  display:block;
  width:50%;
  float:left;
}