My CSS code is not displaying the shadow effect in Mozilla Firefox:
body {
text-align: center;
font-family: Sans-serif;
background-image: url("d3.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
box-shadow: 1px 1px 1px grey;
-moz-filter: drop-shadow(1px 1px 1px grey);
-webkit-filter: drop-shadow(1px 1px 1px grey);
}
In Chrome, all elements have a nice shadow effect in the body. I would like to achieve the same result in Mozilla. How can I make this work? Why is it that "moz" isn't functioning as expected?
Appreciate your help!