搜尋

首頁  >  問答  >  主體

前端 - CSS3问题:请问-webkit-background-clip属性,需要写在background属性后面吗?

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>background-clip:text</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
<style>
*{margin: 0; padding: 0;}
p{width: 300px; height: 60px; 
    border: 1px solid #000;
    margin: 50px auto;
    font-size: 50px; font-weight: bold;
    text-align: center; line-height: 60px;
    /* -webkit-background-clip: text; 写在background上面则clip不生效*/
    background: -webkit-linear-gradient(red,blue);
    -webkit-background-clip: text; /*写在background属性下面,正常*/
    color: rgba(0,0,0,0);
}
</style>
</head>
<body>
    <p>你好啊!</p>    
</body>
</html>

请问一下,为什么 -webkit-background-clip:text;,需要写在background属性的后面,clip才能生效?谢谢!

PHPzPHPz2778 天前954

全部回覆(2)我來回復

  • PHPz

    PHPz2017-04-17 11:28:12

    CSS簡寫屬性:

    沒有指定的值會被設定為它的初始值。這聽起來似乎本來就很合理的樣子,但這確實意味著,它將會覆蓋先前設定的值。

    MDN---CSS的簡寫屬性

    當-webkit-background-clip屬性寫在background屬性後面,-webkit-background-clip就覆寫了預設值,所以就運作了。反之,正好相反。

    回覆
    0
  • 巴扎黑

    巴扎黑2017-04-17 11:28:12

    最後辨識的一個就是有效的。無論是那個屬性都是一樣的。
    所以,一定要確保想要保留的寫在最後。

    回覆
    0
  • 取消回覆