嘿,我使用其中一个 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))
);
}