Advertisement
kalovski

Untitled

Feb 21st, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. .element {
  2. background: orange;
  3. transition-property: background;
  4. transition-duration: 3s;
  5. transition-timing-function: ease-in;
  6. }
  7. .element:hover {
  8. background: red;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement