它在哪里遏制我的渐变灰度?

时间:2015-07-15 08:02:34

标签: html css css3

我有this网站。正如你在picture 中看到的那样,有一条灰色的条纹......我想做一个白色或删除。我的渐变代码如下:

.top-switch-bg{ 
  background: -webkit-linear-gradient(left, white 20% , #d9d9d9); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, white 20%, #d9d9d9); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, white 20%, #d9d9d9); /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, white 20% , #d9d9d9); /* Standard syntax */
 min-height:29px; position:relative; z-index:10030;
z-index:1;}

如何让这段代码按照我的意愿运作。代码编写有什么问题?

编辑:

我解决了这个问题。 我改变了这段代码

header { position:relative; z-index:10020;
 -webkit-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
         box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);}

使用:

header { position:relative; z-index:10020;}

提前致谢!

0 个答案:

没有答案