NatChen

Once you have chosen the road of life, you have to be brave enough to go to the end and never look back.

文字渐变方法

css代码

h1.start-gradient {
display: inline-block;
        background: -webkit-linear-gradient(left,  #4f185d , #fe5d4b);     /* 背景色渐变 */
           -webkit-background-clip: text;         /* 规定背景的划分区域 */
           -webkit-text-fill-color: transparent;  /* 防止字体颜色覆盖 */
}

 html代码

<h1 class="start-gradient">快速开始</h1> 

 

注意:必须设置宽度,已达到预期效果或者设置为内联块状元素

posted @ 2018-01-02 11:14  NatChen  阅读(205)  评论(0编辑  收藏  举报