我是 HTML5 初学者,我刚刚 使用 Twitter Bootstrap创建了我的投资组合页面。我使用colorzilla 渐变生成器生成了我的渐变。
不幸的是,有时我的渐变在 Chrome 中加载不正确,它看起来像这样:
我的页面有什么问题?
我是 HTML5 初学者,我刚刚 使用 Twitter Bootstrap创建了我的投资组合页面。我使用colorzilla 渐变生成器生成了我的渐变。
不幸的是,有时我的渐变在 Chrome 中加载不正确,它看起来像这样:
我的页面有什么问题?
这是 Bootstap 梯度混合所给出的,你可以看看结果是否有任何不同:
.iamcoming {
background-color: #525252;
background-image: -moz-linear-gradient(top, #444444, #666666);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#666666));
background-image: -webkit-linear-gradient(top, #444444, #666666);
background-image: -o-linear-gradient(top, #444444, #666666);
background-image: linear-gradient(to bottom, #444444, #666666);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff666666', GradientType=0);
}
祝你好运!