I have a question regarding vendor prefixes that has been on my mind. I couldn't find a concrete answer - do we need to include them when disabling/resetting styles with values such as "none", "initial", "0", etc.? For instance, if I apply a box shadow like this:
-webkit-box-shadow: -4px 0 10px 2px rgba(0, 0, 0, .1);
-moz-box-shadow: -4px 0 10px 2px rgba(0, 0, 0, .1);
box-shadow: -4px 0 10px 2px rgba(0, 0, 0, .1);
If I want to remove the box shadow at a smaller screen size within a media query, can I simply use "box-shadow: none;" or is it necessary to specify it like this:
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;