Skip to content

Commit

Permalink
initial commit: vendor prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
arj14008 committed Apr 11, 2019
1 parent 72d5147 commit d8c6b9a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
To approach browser specific styling issues, vendor or browser prefixes should be applied to the front of certain styling properties. This will allow browsers to use certain styling features that aren't yet fully supported by all browsers in a standard.

Here are all the CSS browser prefixes:
Android:
-webkit-
Chrome:
-webkit-
Firefox:
-moz-
Internet Explorer:
-ms-
iOS:
-webkit-
Opera:
-o-
Safari:
-webkit-

If including a vendor prefix for a property, all vender prefixed versions should be included first before the standalone property:
-webkit-transition: all 4s ease;
-moz-transition: all 4s ease;
-ms-transition: all 4s ease;
-o-transition: all 4s ease;
transition: all 4s ease;

0 comments on commit d8c6b9a

Please sign in to comment.