【html】標準準拠height100%ボックス | さけブロ。♡主にディズニー、htmlやcssなどのメモも♡

さけブロ。♡主にディズニー、htmlやcssなどのメモも♡

自分用htmlやcssなどメモ&身内向け料理日記&ただのディズニーマニア。海外ディズニーが最近好きすぎてヤバイ。WDW、DLR、HKDL、DLP、アウラニ、SHDL訪問済。クルーズも参加済。

【参考サイト】

http://www.stylish-style.com/csstec/ultimate/height100.html



☆html
<body>
<div id="main">
<h1>height100%のボックス成功版</h1>
<p>
標準準拠のIEやfirefoxでbody直下にheight100%のボックスを作れる。
</p>
・・・略
</div>
</body>

☆css
*{
margin:0;
padding:0;
}
html{
height:100%;
}
body{
background-image:url(../../../img/back1.gif);
height:100%;
width:80%;
margin:0px auto;
}
div#main{
background-image:url(../../../img/sub-back2.jpg);
border:solid 1px #760014;
border-width:0px 1px;
height:100%;
min-height: 100%;
}
body > #main {
height: auto;
}