I wanted to put box shadow on an element, this time instead of filling the parameters manually, I used an online generator which gave me an output like this:
-webkit-box-shadow: 0px 10px 7px -8px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 10px 7px -8px rgba(0,0,0,0.25);
box-shadow: 0px 10px 7px -8px rgba(0,0,0,0.25);
But its just the same thing 3 times over, I'd get it if there were some parametric differences between different browser implementations but in this case there aren't any. Also, just plain old
box-shadow: 0px 10px 7px -8px rgba(0,0,0,0.25);
works in all modern browsers anyway so why would I want to bloat my css file?