CSS3下的渐变文字效果实现

显示效果

Snip20170910_23.png

html

若你喜欢怪人,其实我很美!

css

.text-gradient {
            display: inline-block;
            font-size: 50px;
            background-image: -webkit-gradient(linear, 0 0, 0 bottom, from(#ffc800), to(red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

你可能感兴趣的:(CSS3下的渐变文字效果实现)