gpt4 book ai didi

css - linear-gradient 等价于 moz-linear-gradient

转载 作者:太空宇宙 更新时间:2023-11-04 05:06:33 30 4
gpt4 key购买 nike

我想替换以下特定于 Mozilla 的 CSS 规则:

background: -moz-linear-gradient(center top , #F5F5F5, #E4E4E4); 

使用标准 linear-gradient 代替的等效规则。换句话说,我怎样才能完成下面的规则,使其具有与上面的规则相同的效果(在 Firefox 中)

background: linear-gradient /* what goes here? */

最佳答案

这就是我为所有浏览器处理所有渐变的方式,希望对您有所帮助;

background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.65)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* IE10+ */
background: linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

关于css - linear-gradient 等价于 moz-linear-gradient,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10323031/

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