码迷,mamicode.com
首页 > Web开发 > 详细

css3文字渐变无效果的解决方案

时间:2018-07-06 01:45:48      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:文字   无效   gradient   解决方案   tran   web   site   cli   linear   

现在css3越来月流行了,为了实现一些高大上的效果,我们会用一些渐变的特效,请看文字渐变的特效代码:

  .title {
    font-size: 60px;
    line-height: 80px;
    text-align: center;
    margin-top: 15%;
    -webkit-background-clip: text; 
    background: linear-gradient(to right, red, blue);
    color: transparent;
  }

  

  <div class="title">
    Welcome to our website
  </div>

运行一下,发现没有效果,是不是很奇怪

 

这个时候我们要改变一下属性的顺序:

.title {
    font-size: 60px;
    line-height: 80px;
    text-align: center;
    margin-top: 15%;
    background: linear-gradient(to right, red, blue);
    -webkit-background-clip: text;  /*这个属性只能放在background属性的后面*/
    color: transparent;
  }

再运行一下,是不是很神奇的事情发生了,文字渐变出现了

 

css3文字渐变无效果的解决方案

标签:文字   无效   gradient   解决方案   tran   web   site   cli   linear   

原文地址:https://www.cnblogs.com/0955xf/p/9271280.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!