I'm trying to display a block in the center of the window using margin auto.
My code is
<div class="centre-element"> This box is coming at the center of the window. </div>
CSS
.centre-element{
width: 200px;
height: 100px;
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
margin:auto;
}
This works in all the browsers I tested except in IE7. Is there any help for this?
Appreciate any help.