Internet Explorerのビューポートで高さを100%に設定しようとしています。ご想像の通り、次のコードは、他のどこでも動作します:高さに関するFickle IEの問題100%
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
body {
font-family: Times New Roman, Times, serif;
font-size: 13px;
background-color:#E8E8E8;
background:url(/images/background.png) repeat-x;
}
#wrap {
margin:0 auto;
width: 935px; /* Change to desired width :) */
min-height: 100%;
background:url(/images/content.png)repeat-y;
}
#main {
overflow: auto;
padding-bottom: 112px;
} /* must be same height as the footer */
ご迷惑をおかけして申し訳ありませんが、本当の問題は、ラップ内の繰り返しイメージがInternet Explorerで繰り返されていないことです。 –
あなたのHTMLを提供しない限り、あなたが念頭に置いているものを推測することは不可能です。 –
ラップに罫線を適用して、divの実際のサイズを確認してください。多分それは崩壊しました。 –