Skip to content

Instantly share code, notes, and snippets.

@tristen
Created December 13, 2016 16:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tristen/d71cdd070ea207a9981f137998941230 to your computer and use it in GitHub Desktop.
Save tristen/d71cdd070ea207a9981f137998941230 to your computer and use it in GitHub Desktop.
underlines
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>Brochure page</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link href='/dist/assembly.css' rel='stylesheet' />
<style>
body {
font-family:sans-serif;
background-color:red;
margin:0;
padding:0;
}
span {
text-shadow: 2px 1px 0 red, -2px 1px 0 red;
background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
background-repeat: repeat-x;
background-position: 0 17px;
}
</style>
</head>
<body>
<span>Here we go go go!</span>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment