Skip to content

Instantly share code, notes, and snippets.

@muhibbudins
Created October 14, 2017 00:20
Show Gist options
  • Save muhibbudins/c8d3a56b2f378b3acb264a2c314a7126 to your computer and use it in GitHub Desktop.
Save muhibbudins/c8d3a56b2f378b3acb264a2c314a7126 to your computer and use it in GitHub Desktop.
CSS Vendor prefix example
.button {
padding: 14px 20px;
line-height: normal;
background-color: #2C483D;
color: white;
-webkit-transition: all 4s ease;
-moz-transition: all 4s ease;
-ms-transition: all 4s ease;
-o-transition: all 4s ease;
transition: all 4s ease;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment