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%;
}