2

我在我的正文代码中使用它

body { 
  margin:50px;
  text-align:center;
  padding: 0px;
  background: #2a6da9;
  background: -moz-linear-gradient(top, #1D1D1D, #1F1F1F);
  background: -webkit-gradient(linear, left top, left bottom, from(#1D1D1D), to(#1F1F1F));   
    }     

在背景中,渐变显示在看起来粗糙且像素化的块中。我如何将其修复到平滑的地方。我也尝试过将图像作为背景,但没有运气。谢谢

4

2 回答 2

0

它取决于浏览器,我看不到它具有相同的 css。您可以尝试将其更改为:

background: -moz-linear-gradient(top, #1d1d1d 0%, #1f1f1f 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1d1d1d), color-stop(100%,#1f1f1f));

但就是这么细微的颜色变化,我什至将高度设置为超过 300px。

于 2012-07-30T02:11:38.883 回答
0

使用 1 X 100 像素的图像使质量看起来更好

于 2012-07-30T02:03:08.480 回答