跳动百科

html渐变背景色(html渐变色代码)

司博澜   来源:

大家好,我是小跳,我来为大家解答以上问题。html渐变背景色,html渐变色代码很多人还不知道,现在让我们一起来看看吧!

1、这个是CSS3实现,必须浏览器支持

2、<html>

3、<body>

4、<style type="text/css">

5、.text-gradient {

6、 display: inline-block;

7、 color: green;

8、 font-size: 8em;

9、 font-family: 微软雅黑;

10、 background-image: -webkit-gradient(linear, 0 0, 0 bottom, from(rgba(0, 128, 0, 1)), to(rgba(51, 51, 51, 1)));

11、 -webkit-background-clip: text;

12、 -webkit-text-fill-color: transparent;

13、};

14、</style>

15、<h2 class="text-gradient">我</h2>

16、</body>

17、</html>

本文到此讲解完毕了,希望对大家有帮助。