Skip to content

Instantly share code, notes, and snippets.

Created March 22, 2012 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/2157382 to your computer and use it in GitHub Desktop.
Save anonymous/2157382 to your computer and use it in GitHub Desktop.
Transition aliasing bug
/* Transition aliasing bug */
body {
font-family: Helvetica, Helvetica Neue, Arial, sans-serif;
}
div {
width: 100px;
height: 100px;
background-color: blue;
color: #fff;
transition: 1s ease;
position: relative;
}
div:hover {
left: 200px;
}
<div>Hover me</div>
Watch this text!
{"view":"split-vertical","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment