为什么我的身体的背景颜色漏出了它的边界?

时间:2012-10-11 01:34:28

标签: css background-color document-body

this page我有一个200x200的身体,蓝色背景。

然而背景应用于整个窗口?

为什么会这样?

以下是代码:https://gist.github.com/3869589/9df1c4de67ae227aecfb57ee16ff9eaade788727

浏览器我测试过:FF 16和Chrome 22。

1 个答案:

答案 0 :(得分:2)

我会把200x200的蓝色框放在它自己的标签里面。

<style> .blue-box{ width:200px; height:200px; background:blue; } </style>

<body>
    <div class="blue-box"></div>
</body>