Skip to content

initial commit: vendor prefixes #1

Merged
merged 1 commit into from
Apr 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;