Skip to content

Instantly share code, notes, and snippets.

@up1
Created June 15, 2010 10:57
Show Gist options
  • Save up1/438974 to your computer and use it in GitHub Desktop.
Save up1/438974 to your computer and use it in GitHub Desktop.
<head>
<title>menu mockup</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<style type="text/css">
.show {display: none; }
.hide:focus + .show {display: inline; }
.hide:focus { display: none; }
.hide:focus ~ #list { display:none; }
@media print { .hide, .show { display: none; } }
</style>
</head>
<body>
<p>Here's a list</p>
<div>
<a href="#" class="hide">[hide]</a>
<a href="#" class="show">[show]</a>
<ol id="list">
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ol>
</div>
<p>How about that?</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment