我一直试图在 CSS 中制作一个看起来很酷的渐变,但我遇到了一个不可接受的问题。CSS渐变是带状的,看起来不太好。我也不想使用任何图像。这是我的代码:
background-image: -moz-linear-gradient(top, #333, #000);
background-image: -ms-linear-gradient(top, #333, #000);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333), to(#000));
background-image: -webkit-linear-gradient(top, #333, #000);
background-image: -o-linear-gradient(top, #333, #000);
background-image: linear-gradient(top, #333, #000);
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#333', endColorstr='#000', GradientType=0);
我能做些什么来解决这个问题?