gpt4 book ai didi

css - 背景渐变在 IE10 中渲染不正确

转载 作者:太空宇宙 更新时间:2023-11-04 11:31:38 24 4
gpt4 key购买 nike

#top_container
{
padding-bottom: 5px;
background: #d1d1ff;
background: -webkit-gradient(linear, left top, left bottom, from(#7db9e8), to(#1e5799));
background: -moz-linear-gradient(#d1ffff, #d1d1ff);
background: -o-linear-gradient(#d1ffff, #d1d1ff);
background: -webkit-linear-gradient(#d1ffff, #d1d1ff);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1ffff', endColorstr='#d1d1ff',gradientType=0 );
background: -ms-linear-gradient(top, #d1ffff 30%, #d1d1ff 100%);
background:linear-gradient(to bottom, #d1ffff 30%, #d1d1ff 70%);
}

除 IE10 外,渐变显示正确 - 我搜索了其他可能的语法版本,并尝试了 -ms-linear-gradient 和 linear-gradient 的许多不同版本。

还有什么可能导致它不显示。背景 #d1d1ff 正在容器中显示。

最佳答案

jsFiddle使用 Ultimate CSS Gradient Generator 构建.为此,网上有很多工具!添加了一个最小高度,以便它可以在 jsFiddle 上正确显示,如果您复制此代码,请确保将其删除。

CSS:

#top_container {  
min-height: 200px;
padding-bottom: 5px;
background: #d1ffff;
background: -moz-linear-gradient(top, #d1ffff 0%, #d1d1ff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d1ffff), color-stop(100%,#d1d1ff));
background: -webkit-linear-gradient(top, #d1ffff 0%,#d1d1ff 100%);
background: -o-linear-gradient(top, #d1ffff 0%,#d1d1ff 100%);
background: -ms-linear-gradient(top, #d1ffff 0%,#d1d1ff 100%);
background: linear-gradient(to bottom, #d1ffff 0%,#d1d1ff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1ffff', endColorstr='#d1d1ff',GradientType=0 );
}

关于css - 背景渐变在 IE10 中渲染不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31985314/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com