Skip to content

Instantly share code, notes, and snippets.

@mjdargen
Last active October 26, 2022 19:29
Show Gist options
  • Save mjdargen/28ecc0540062466b3f82326a073b0524 to your computer and use it in GitHub Desktop.
Save mjdargen/28ecc0540062466b3f82326a073b0524 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Nate Example</title>
<meta charset="utf-8">
<style>
button>span {
display: none;
}
button:hover>span#hide {
display: inline;
}
</style>
</head>
<body>
<button>F<span id="hide">astcase</span></button>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment