Hey. I want to put multiple background image in css at different position(like at diff px. and at diff z-index.) Is that possible in body tag. i mean all images in body tag. or with diff ids.?
body {background-image:url(img/banner.png);
background-position: 50% 49px;
background-repeat:no-repeat;
background-color:#000000}
.nav {position:absolute;
top:267px;
left:149px;
z-index:1}
.home {position:absolute;
top:281px;
left:285px;
z-index:2;}
.event {position:absolute;
top:281px;
left:389px;
z-index:2;}
.sponsors{position:absolute;
top:281px;
left:493px;
z-index:2;}
.about {position:absolute;
top:281px;
left:597px;
z-index:2;}
.register{position:absolute;
top:281px;
left:701px;
z-index:2;}
.more {position:absolute;
top:281px;
left:805px;
z-index:2;}
.box {position:absolute;
top:1163px;
left:157px;
z-index:1;}
and for each class i want to add a background image . please correct the code. and add background image in all clases above