Okay, so my question is, how do i make css slideshow within one class, without having to add any sub-class or any content into the div its self? I just want to use background property in css if that's possible. Code is at the end of post, i would like if i could make background on div "image" to slide. Thanks in advance.
Let me edit question a bit, i will have 12x6 grid of boxes on the page, and i need all of those 72 boxes to change background at same time, but with positioning to look like its all one big continues background that lays over all of those boxes but doesn't lay on body, so i get like mosaic effect.
<div class="wrapper">
<div class="box"><div class="image"></div></div>
<div class="box"><div class="image"></div></div>
<div class="box"><div class="image"></div></div>
<div class="box"><div class="image"></div></div>
</div>
.image{
background: url('http://goo.gl/mZc5Ai') no-repeat center fixed;
position:absolute;
float: none;
background-size:100%;
width:100%;
height:100%;
}
.box {
width:140px;
height:140px;
float:left;
margin:10px;
position:relative;
}