Home  >  Article  >  Web Front-end  >  css-各浏览器下的背景色渐变_html/css_WEB-ITnose

css-各浏览器下的背景色渐变_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:19:451102browse

.linear{           width:100%;           height:600px;           FILTER: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#b8c4cb,endColorStr=#f6f6f8); /*IE 6 7 8*/           background: -ms-linear-gradient(top, #fff, #0000ff); /* IE 10 */         background:-moz-linear-gradient(top,#b8c4cb,#f6f6f8);/*火狐*/           background:-webkit-gradient(linear, 0% 0%, 0% 100%,from(#b8c4cb), to(#f6f6f8));/*谷歌*/           background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#0000ff));      /* Safari 4-5, Chrome 1-9*/          background: -webkit-linear-gradient(top, #fff, #0000ff); /*Safari5.1 Chrome 10+*/         background: -o-linear-gradient(top, #fff, #0000ff); /*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