css 向行或列背景添加渐变
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 向行或列背景添加渐变相关的知识,希望对你有一定的参考价值。
.kb-gradient {
/* Replace this portion of the rule with the CSS for your gradient */
background-color: #21D4FD;
background-image: -webkit-linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
background-image: -moz-linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
background-image: -o-linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
/*end replace*/
}
以上是关于css 向行或列背景添加渐变的主要内容,如果未能解决你的问题,请参考以下文章