View Single Post
  #1 (permalink)  
Old Mar 17th, 2007, 00:31
verkevinmanering69err455 verkevinmanering69err455 is offline
Junior Member
Join Date: Mar 2007
Location: Australia
Age: 19
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Vertically centering Div's

I was working on creating a vertically centered div. I did find a way however which sadly only works in IE. Dose anybody know how to vertically center a div which in most browsers?


Heres the code for IE DIV Centering:
Code: Select all
#containerbg {
    position:absolute;
    _top:-50%;
    display:table-cell;
    vertical-align:middle;
    background-color:#FF6633;
    width:100%;
}
Reply With Quote