フッターDIVがあります
<div id=footer">
中身
<div id="wrapper">
私は と を に設定しwidth: 100%
ましtext-align:center
たfooter
... クロム、IE 9、8、および Firefox で正常に動作します。
しかし、IE 7 では機能せず、margin
適切に位置合わせするために を使用する必要があります。
助けてください。
// これは Chrome、IE 9、IE 8、FF 用です
#footer .footertc {
text-align: center;
margin: 35px 0px 0px 0px;
display: block;
width: 100%;
height: 75px;
background: #F1F1EF;
padding: 0px;
font-size: 10px;
clear: both;
}
#wrapper {
background: white;
background-position: 50% 0px;
width: 984px;
margin: 0px auto 0 auto;
text-align: center;
}
// これは IE 7 用です --> そして、margin-left を使用せざるを得ません
*+html #footer .footertc {
text-align:center; -> this does not work
margin:50px 0px 0px 550px;
display:block;
width:100%; --> this does not work
height:75px;
background:#F1F1EF;
}