Skip to content

Instantly share code, notes, and snippets.

@derans
Created August 30, 2012 05:18
Show Gist options
  • Save derans/3522675 to your computer and use it in GitHub Desktop.
Save derans/3522675 to your computer and use it in GitHub Desktop.
CSS Toggle
<html>
<head>
<style type="text/css">
.toggle-me { display: none; }
div:hover .toggle-me { display: inline-block; }
</style>
<body>
<div>Most Important <span class="toggle-me">More Information</span></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment