我有这个 CSS 代码,但影子的东西在 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);
}
它在 Chrome 中看起来非常好,身体中的所有元素都有某种阴影,我也想在 Mozilla 中实现这一点。我该怎么做呢?为什么“moz”不起作用?
谢谢!