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

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

WBOY
Release: 2016-06-24 11:19:45
Original
1174 people have browsed it

.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+*/     }   
Copy after login

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template