すべての辺に 20px の余白を除いてページ全体をカバーする要素を作成する必要があります。これを試してみると、Webkit ブラウザーと Firefox で動作しますが、Internet Explorer (10) と Opera には問題があります :-( 。これを解決する方法はありますか?
HTML
<div id="first">
<div id="second">
Hello world!
</div>
</div>
CSS
head, body
{
width: 100%;
height: 100%;
}
body
{
position: absolute;
margin: 0;
background-color: blue;
display: table;
}
#first
{
display: table-cell;
height: 100%;
width: 100%;
padding: 20px;
}
#second
{
height: 100%;
width: 100%;
background-color: white;
}