我已经看过CSS渐变属性,并且想知道这些类型的渐变是否可以通过Compass或vanilla CSS在浏览器中完成?我似乎无法弄明白该怎么做。
答案 0 :(得分:1)
答案 1 :(得分:1)
是的,他们可以:
background: rgb(252,215,51);
background: -moz-linear-gradient(top, rgba(252,215,51,1) 50%, rgba(246,185,51,1) 50%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(252,215,51,1)), color-stop(50%,rgba(246,185,51,1)));
background: -webkit-linear-gradient(top, rgba(252,215,51,1) 50%,rgba(246,185,51,1) 50%);
background: -o-linear-gradient(top, rgba(252,215,51,1) 50%,rgba(246,185,51,1) 50%);
background: -ms-linear-gradient(top, rgba(252,215,51,1) 50%,rgba(246,185,51,1) 50%);
background: linear-gradient(to bottom, rgba(252,215,51,1) 50%,rgba(246,185,51,1) 50%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcd733', endColorstr='#f6b933',GradientType=0 );
答案 2 :(得分:1)
使用Compass的一个非常简单,干净且方便的解决方案:http://codepen.io/anon/pen/HCexj