diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..2bb9b11 Binary files /dev/null and b/.DS_Store differ diff --git a/03 - CSS/how-would-you-approach-fixing-browser-specific-styling-issues.md b/03 - CSS/how-would-you-approach-fixing-browser-specific-styling-issues.md new file mode 100644 index 0000000..cc0a351 --- /dev/null +++ b/03 - CSS/how-would-you-approach-fixing-browser-specific-styling-issues.md @@ -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; +