Skip to content

Instantly share code, notes, and snippets.

@fisherds
Last active August 29, 2015 14:07
Show Gist options
  • Select an option

  • Save fisherds/13019089ca15d625f5ca to your computer and use it in GitHub Desktop.

Select an option

Save fisherds/13019089ca15d625f5ca to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Selectors</title>
<style>
body {
font: 1em "Comic Sans MS", san-serif;
}
.top-level {
list-style-type: none;
}
#fictional-list,
#non-fictional-list {
width: 200px;
border: 1px solid blue;
}
.top-level > li {
margin-top: 30px;
}
</style>
</head>
<body>
<h1>Family Tree</h1>
<ul class="top-level">
<li>Fictional
<ul id="fictional-list">
<li>Simpsons
<ul class="family-members">
<li>Homer</li>
<li>Lisa</li>
<li>Bart</li>
<li>Marge</li>
<li>Maggie</li>
</ul>
</li>
<li>Flintstones
<ul class="family-members">
<li>Fred</li>
<li>Wilma</li>
<li>Pebbles</li>
<li>Dino</li>
</ul>
</li>
</ul>
</li>
<li>
Non-fictional
<ul id="non-fictional-list">
<li>Fishers
<ul class="family-members">
<li>Dave</li>
<li>Kristy</li>
<li>McKinley</li>
<li>Keegan</li>
</ul>
</li>
</ul>
</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment