ビューポート内で適切なサイズに制限しようとしているスクロールコンテンツを含むライトボックススタイルのdivがあります。また、このdivを水平方向の中央に配置する必要があります。これはすべてFx/Chrome/IE9で簡単です。
私の問題は、IE8が、コンテンツのサイズ設定に使用する絶対位置とmargin: 0 auto
、ライトボックスを水平方向に中央揃えするために使用する規則を無視することです。
- なんで?
- 回避策の私のオプションは何ですか?
編集:親要素を設定することで中央揃えの問題は修正されますtext-align:center
が、中央揃えしたい要素がインラインではないため、なぜそれが機能するのかわかりません。まだ絶対的なポジショニングのものに固執しています。
HTML:
<div class="bg">
<div class="a">
<div class="aa">titlebar</div>
<div class="b">
<!-- many lines of content here -->
</div>
</div>
</div>
CSS:
body { overflow: hidden; height: 100%; margin: 0; padding: 0; }
/* IE8 needs ruleset above */
.bg {
background: #333;
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
height: 100%; /* needed in IE8 or the bg will only be as tall as the lightbox */
}
.a {
background: #eee; border: 3px solid #000;
height: 80%; max-height: 800px; min-height: 200px;
margin: 0 auto;
position: relative;
width: 80%; min-width: 200px; max-width: 800px;
}
.aa {
background: lightblue;
height: 28px; line-height: 28px;
text-align: center;
}
.b {
background: coral;
overflow: auto;
padding: 20px;
position: absolute;
top: 30px; right: 0; bottom: 0; left: 0;
}
問題のデモは次のとおりです:http://jsbin.com/urikoj/1/edit