Skip to content

Instantly share code, notes, and snippets.

@ganobrega
Last active June 13, 2019 00:00
Show Gist options
  • Save ganobrega/5f9f8fab45e8faff603fb16fca31a794 to your computer and use it in GitHub Desktop.
Save ganobrega/5f9f8fab45e8faff603fb16fca31a794 to your computer and use it in GitHub Desktop.
Clean Code

Clean Code

CSS

  1. Remove properties with prefixers -moz, -webkit, -o, -ms: (-webkit|-moz|-o-|-ms-).*:.*;
  • e.g: -webkit-transition: all 0.14s linear;
  1. Remove properties with prefixers -moz, -webkit, -o, -ms in values: .*:.*(-webkit|-moz|-o-|-ms-).*;
  • e.g: display: -webkit-flex-shrink
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment