Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS center div with position absolute Re: center div with position absolute

#92578
poonu
Member

use this trick

.div-abc {position:absolute;
z-index:1;
width:500px; height:500px; background:#666; border:solid 1px #333;
border-radius:10px;
-moz-border-radius:10px;
-webkit-border-radius:10px;
left:50%;
margin-left:-250px;
}