Skip to content

Instantly share code, notes, and snippets.

@akirchmyer
Created November 17, 2013 03:49
Show Gist options
  • Select an option

  • Save akirchmyer/7508858 to your computer and use it in GitHub Desktop.

Select an option

Save akirchmyer/7508858 to your computer and use it in GitHub Desktop.
A Pen by Andrew Kirchmyer.
<div class="my-ellipse"></div>
Hover and notice that the ellipse is preserved with a new width and height
.my-ellipse {
height: 50px;
width: 100px;
border-radius: 50%;
background-color: yellow;
}
.my-ellipse:hover {
height: 40px;
width: 200px;
transition: all 2s ease-in;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment