儘管有CSS的vertical-align特性,但並不能有效解決未知高度的垂直居中問題(在一個DIV標籤裡有未知高度的文字或圖片的情況下)。
標準瀏覽器如Mozilla, Opera, Safari等.,可將父級元素顯示方式設定為TABLE(display: table;) ,內部子元素定為table-cell (display: table-cell ),透過vertical-align特性使其垂直居中,但非標準瀏覽器是不支援的。
非標準瀏覽器只能在子元素裡設距頂部50%,裡面再套個元素距頂部-50% 來抵銷。
body {padding: 0; 0; 🎜>body,html{height: 100%;}
#outer {height: 100%; overflow: hidden; position: relative;width: 100%; background:ivory; display: table; position: static;}
#middle {position: absolute; top: 50%;} /* for explorer only*/
#middleid] for explorer only*/
#middleid] {display: : middle; position: static;}
#inner {position: relative; top: -50%;width: 400px;margin: 0 auto; /order*for 400px;margin: 0 auto; /orderb:for 400px;margin: 0 auto;” 1px solid green; background-color: ivory;}
xhtml
代碼如下:
以上CSS代碼的優點是沒有hacks,採用了IE不支援的CSS2選擇器#value [id]。
CSS2選擇器#value[id]相當於選擇器#value,但是Internet Explorer不支援這種類型的選擇器。同樣地.value[class],相當於.value,這些只有標準瀏覽器能讀懂。
檢定:Firefox1.5、Opera9.0、IE6.0、IE5.0通過。