Home  >  Article  >  Web Front-end  >  CSS commonly used gradients

CSS commonly used gradients

WBOY
WBOYOriginal
2016-09-21 13:56:061202browse

Border gradient:

<span style="color: #008080;">1</span> <span style="color: #800000;">border-image: -webkit-linear-gradient( red , blue) 30 30;
</span><span style="color: #008080;">2</span> <span style="color: #800000;">border-image: -moz-linear-gradient( red, blue) 30 30;
</span><span style="color: #008080;">3</span> <span style="color: #800000;">border-image: linear-gradient( red , blue) 30 30;</span>

Text gradient: (only supports -webkit-)

<span style="color: #008080;">1</span> <span style="color: #800000;">background-image: -webkit-gradient(linear, 0 0, 0 80%, from(nth($color7, 3)), to(nth($color7, 4)));
</span><span style="color: #008080;">2</span> <span style="color: #800000;">-webkit-background-clip: text;
</span><span style="color: #008080;">3</span> <span style="color: #800000;">-webkit-text-fill-color: transparent;</span>

Background Gradient:

<span style="color: #008080;">1</span> <span style="color: #800000;">filter: alpha(opacity=100 finishopacity=50 style=1 startx=0,starty=0,finishx=0,finishy=150) progid:DXImageTransform.Microsoft.gradient(startcolorstr=red,endcolorstr=blue,gradientType=0);
</span><span style="color: #008080;">2</span> <span style="color: #800000;">-ms-filter: alpha(opacity=100 finishopacity=50 style=1 startx=0,starty=0,finishx=0,finishy=150) progid:DXImageTransform.Microsoft.gradient(startcolorstr=red,endcolorstr=blue,gradientType=0);  
</span><span style="color: #008080;">3</span> <span style="color: #800000;">background: red; </span><span style="color: #008000;">/*</span><span style="color: #008000;"> 一些不支持背景渐变的浏览器 </span><span style="color: #008000;">*/</span>  
<span style="color: #008080;">4</span> <span style="color: #800000;">background: -moz-linear-gradient(top, red, blue);  
</span><span style="color: #008080;">5</span> <span style="color: #800000;">background: -webkit-gradient(linear, 0 0, 0 bottom, from(red), to(blue));</span>

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