Below is the best all-around solution I could build to vertically & horizontally center a fixed-width, flexible height content box. Tested and working for recent versions of FF, Opera, Chrome, & Safari, and MSIE 6+.
The Important Parts
- outter DIV: display: table; position: absolute; height: 100%; width: 100%
- middle DIV: display: table-cell; vertical-align: middle
- inner DIV: margin-left: auto; margin-right: auto; width: [whatever width you want]
To accommodate for IE 7 & older, use a separate style sheet with these changes:
- link to IE style sheet: <!--[if lte IE 7]><link rel="stylesheet... /><![endif]-->
- outter DIV: display: inline-block; top: 0
- middle DIV: display: inline-block; top: 50%, position: relative
- inner DIV: display: inline-block; top: -50%, position: relative
Test page: http://emergentweb.com/test/valign.html
I built in some dynamic content to test the flexibility. Would love to know if anyone sees any problems with it. Should work well for centered overlays also -- lightbox, pop-up, etc.
tablesfor layouts on here? – Chud37 Jan 21 at 15:35