0

嘿,我使用其中一个 css 渐变生成器制作了 css 渐变,我以通常的方式输入我的代码,因为它总是有效,现在......渐变使我的页面有滚动条,如果你在我给定的链接中看起来更好,你会在底角看到一些正方形。这是我的样式代码,标记很干净,只是 html,里面什么都没有的正文标签....

html, body{
    height: 100%;
    background-position: fixed;
    background: #ccffcc;
    background-image: linear-gradient(bottom, rgb(161,219,255) 0%, rgb(204,255,204) 22%);
    background-image: -o-linear-gradient(bottom, rgb(161,219,255) 0%, rgb(204,255,204) 22%);
    background-image: -moz-linear-gradient(bottom, rgb(161,219,255) 0%, rgb(204,255,204) 22%);
    background-image: -webkit-linear-gradient(bottom, rgb(161,219,255) 0%, rgb(204,255,204) 22%);
    background-image: -ms-linear-gradient(bottom, rgb(161,219,255) 0%, rgb(204,255,204) 22%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(161,219,255)),
        color-stop(0.22, rgb(204,255,204))
    );
}

例如http://driglou.pusku.com/javascript/

4

2 回答 2

2

改变你的body风格margin: 0,你会没事的。

您最好查找CSS Reset代码并使用它。

于 2013-05-04T22:00:41.520 回答
0

尝试从正文中删除边距:

body { margin: 0; }
于 2013-05-04T22:02:37.050 回答