刚发现多重背景。我想知道如何将确定的属性仅应用于多个背景列表中的这些背景之一。您如何单独针对它?
下面是一个例子来说明:
body{
background:
url(images/small-group-bubbles.png) repeat-x fixed 10% 0,
url(images/blur-bubble.png) repeat-x fixed -130% 0,
url(images/big-bubble.png) repeat-x fixed 40% 0,
url(images/green-gra-bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-color: #87d677;
如您所见,有一个多个背景的列表,但我想让这些元素之一以背景大小覆盖整个屏幕。此代码当然会将封面属性应用于所有图像。我希望此封面属性仅应用于最后一张图片:green-gra-bg/jpg。
我怎样才能做到这一点?