CSS3下的渐变文字效果实现

2017-09-10  本文已影响24人  SheldonYu

显示效果

Snip20170910_23.png

html

<div class="text-gradient">
        若你喜欢怪人,其实我很美!
</div>

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;
        }
上一篇 下一篇

猜你喜欢

热点阅读