Skip to content

Instantly share code, notes, and snippets.

@eLindemann
Created March 28, 2012 02: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 eLindemann/2223019 to your computer and use it in GitHub Desktop.
Save eLindemann/2223019 to your computer and use it in GitHub Desktop.
HTML 5 Playground
/**
* HTML 5 Playground
*/
body {
color: #ffffff;
font-size: 30pt;
font-family: "Cabin", sans-serif;
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
}
span {
border-bottom: 2px dashed rgba( 255, 255, 255, 0 );
/* HOVER OFF */
-webkit-transition: border-bottom 0.5s;
}
span:hover {
border-bottom: 2px dashed rgba( 255, 255, 255, 1 );
/* HOVER ON */
-webkit-transition: border-bottom 1s;
}
<span>link</span>
{"view":"separate","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment