2011/04/07

IEのセンタリング

センタリングするIDを#containerだとする。
CSSでは
#container {
width: 800px;
margin-left:auto;
margin-right:auto;
}
としていたが
確実なのは左にやって50%戻して来る。

#container {
    left50%;
    margin-left-400px;
    positionabsolute;
    width: 800px;