I have the following code:
<div class="centered" >
<div class="vinyl" id="vinyl1" style="z-index:2;"></div>
<div style="z-index:5;">
<img src="images/center-image.png"/>
</div>
</div>
</div>
<style>
.centered {
position: fixed;
top: 50%;
left: 50%;
margin-top: -230px;
margin-left: -250px;
}
</style>
<script>
var div = document.getElementById('vinyl1');
var property = getTransformProperty(div);
if (property) {
var d = 0;
setInterval(
function () {
div.style[property] = 'rotate(' + (d++ % 360) + 'deg)';
},
100
);
}
</script>
As you see, div with id vinyl1 rotates. However, I would like inside to locate in the center of that div, a static div with a static image. (in the demo it's under the div, and has the number 360 on it) I tried to put z-index.
- z-index does not work and it still shows it below
- how can I locate the image exactly in the center?
You can see the demo here.

relative,absoluteorfixed. – Musa Nov 4 '12 at 23:37<div>of.centeredneed.position: fixedof their own..centered div {position:fixed;}– Michael Berkowski Nov 4 '12 at 23:37