Home  >  Article  >  Web Front-end  >  怎么实现背景色从中间往两边渐变?_html/css_WEB-ITnose

怎么实现背景色从中间往两边渐变?_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:51:335524browse

-webkit-linear-gradient( bottom,transparent ,#000 100%)
这样实现了背景色的渐变,希望实现背景色是中间深色,逐渐往上和往下变成透明,css该怎么写?


回复讨论(解决方案)

FILTER: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#fff,endColorStr=#000); /*IE 6 7 8*/ 

background: -ms-linear-gradient(top, #fff,  #000);        /* IE 10 */

background:-moz-linear-gradient(top,#fff,#000);/*火狐*/ 

background:-webkit-gradient(linear, 0% 0%, 0% 100%,from(#fff), to(#000));/*谷歌*/ 

background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#000));      /* Safari 4-5, Chrome 1-9*/

background: -webkit-linear-gradient(top, #fff, #000);   /*Safari5.1 Chrome 10+*/

background: -o-linear-gradient(top, #fff, #000);  /*Opera 11.10+*/


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn