-
-
Save vectorsize/5031154 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vendor(prop, args) | |
-webkit-{prop} args | |
-moz-{prop} args | |
-ms-{prop} args | |
-o-{prop} args | |
{prop} args | |
border-radius() | |
vendor('border-radius', arguments) | |
box-shadow() | |
vendor('box-shadow', arguments) | |
transition() | |
vendor('transition', arguments) | |
transform() | |
vendor('transform', arguments) | |
transform-origin() | |
vendor('transform-origin', arguments) | |
user-select() | |
vendor('user-select', arguments) | |
background-linear-gradient(startPoint, startColor, startInterval, endColor, endInterval, deprecatedWebkitStartPoint = false, deprecatedWebkitEndPoint = false) | |
background-color startColor | |
if deprecatedWebkitStartPoint && deprecatedWebkitEndPoint | |
background-image -webkit-gradient(linear, deprecatedWebkitStartPoint, deprecatedWebkitEndPoint, color-stop(startInterval, startColor), color-stop(endInterval, endColor)) | |
background-image -webkit-linear-gradient(startPoint, startColor startInterval, endColor endInterval) | |
background-image -moz-linear-gradient(startPoint, startColor startInterval, endColor endInterval) | |
background-image -ms-linear-gradient(startPoint, startColor startInterval, endColor endInterval) | |
background-image -o-linear-gradient(startPoint, startColor startInterval, endColor endInterval) | |
background-image linear-gradient(startPoint, startColor startInterval, endColor endInterval) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment