difference between ‘-webkit-box-shadow’ & ‘box-shadow’ in css

They all apply a box shadow. However, -webkit-box-shadow and -moz-box-shadow are specific to Webkit (e.g. Safari) and Mozilla browsers respectively.

As a CSS 3 property, these are used as vendor specific implementations of box shadow until it becomes widely supported.

Leave a Comment