You can add multiple backgrounds in one div. However, there is no background conversion property, so multiple backgrounds are not supported.
I'm not sure if this will work for you, but you can use :after psuedo-class for this:
div { width: 400px; height: 200px; background: url('http://placehold.it/400x200'); background-repeat: no-repeat; position: relative; -webkit-transform: scaleY(-1); transform: scaleY(-1); } div:after { content: ''; display: block; position: absolute; width: 400px; height: 200px; background: url('http://placehold.it/400x200'); background-repeat: no-repeat; -webkit-transform: scaleY(-1); transform: scaleY(-1); top: -200px; }
If the second background is re-inverted and the first background is inverted. Of course, you can edit this as you wish.
If you can even do it with three backgrounds
Hope you can handle it!
source share