Created
October 11, 2011 13:55
-
-
Save rich97/1278135 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
<title>Test</title> | |
<style type="text/css" media="screen"> | |
#list { | |
list-style:none; | |
} | |
#list li { | |
} | |
#list li span { | |
display:block; | |
float:left; | |
} | |
#list li ul { | |
list-style:none; | |
display:block; | |
} | |
.clearfix:after { | |
content: "."; | |
display: block; | |
height: 0; | |
clear: both; | |
visibility: hidden; | |
} | |
</style> | |
</head> | |
<body> | |
<ul id="list"> | |
<li class="clearfix"> | |
<span> | |
<a href="#">One</a> | |
</span> | |
<ul> | |
<li>Test 1</li> | |
<li>Test 2</li> | |
<li> | |
<span> | |
<a href="#">Second Level</a> | |
</span> | |
<ul> | |
<li>Testing</li> | |
<li>One</li> | |
<li>Two</li> | |
<li>Three</li> | |
</ul> | |
</li> | |
<li>Test 4</li> | |
</ul> | |
</li> | |
<li class="clearfix"> | |
<span> | |
<a href="#">Two</a> | |
</span> | |
<ul> | |
<li>Test 1</li> | |
<li>Test 2</li> | |
<li>Test 3</li> | |
<li>Test 4</li> | |
</ul> | |
</li> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment