zoukankan      html  css  js  c++  java
  • css text gradient All In One

    css text gradient All In One

    <div class="gradient-colors">
        css text gradient, css fonts gradient
    </div>
    
    
    
    .gradient-colors {
        background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        // -webkit-background-size: 200% 100%;
    }
    
    

    online demo

    bug, 文字过少,渐变看不到 ❓

    linear-gradient

    
    .colors {
      background: linear-gradient(135deg, #0f0, #f0f, #00f);
    }
    
    
    
    .colors {
      background: linear-gradient(to right bottom, #0f0, #f0f, #00f);
    }
    
    

    refs

    https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/linear-gradient()



    ©xgqfrms 2012-2020

    www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

    原创文章,版权所有©️xgqfrms, 禁止转载 ️,侵权必究⚠️!


    xgqfrms
  • 相关阅读:
    bootstrap初识
    司徒正美居中方式
    css中的浮动(float)
    fio
    简易接口测试脚本
    字符加密
    Python 汉诺塔
    Python 找零问题
    Python 二分法
    Python 冒泡排序
  • 原文地址:https://www.cnblogs.com/xgqfrms/p/15586085.html
Copyright © 2011-2022 走看看