Skip to content

Instantly share code, notes, and snippets.

@muhibbudins
Created October 14, 2017 00:27
Show Gist options
  • Save muhibbudins/6b32cf134a104d9a1f0479a39983d45c to your computer and use it in GitHub Desktop.
Save muhibbudins/6b32cf134a104d9a1f0479a39983d45c to your computer and use it in GitHub Desktop.
CSS vendor prefix with multiple property example
.button {
padding: 14px 20px;
line-height: normal;
-webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
background-color: #2C483D;
color: white;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
-webkit-transition: all 4s ease;
-moz-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