background-origin和background-clip區別

admin發表於2018-07-30

標題中兩個屬性有著不少的共同點,比如屬性值基本相同,有時候瀏覽器渲染效果是相同。

下面簡單介紹一下他們的區別,這兩個屬性的具體用法可以參閱以下兩篇文章:

(1).CSS3 background-origin一章節。

(2).CSS3 background-clip一章節。 

兩個屬性的區別:

(1).background-clip屬性規定背景圖片允許繪製的區域。

(2).background-origin屬性規定背景圖片開始繪製的區域。

雖然有時候我允許你在這個地方繪製背景圖片,但是你不給面子,不從允許的地方繪製背景圖。

下面看一個程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
div {
  border: 10px dashed green;
  width: 250px;
  height: 200px;
  padding: 10px;
  margin-top: 10px;
  background-repeat: no-repeat;
}
.antzone {
  background-origin: content-box;
  background-clip: border-box;
  background-image:url(mytest/demo/small.jpg); 
}
</style>
</head>
<body>
<div class="antzone"></div>
</body>
</html>

background-clip屬性允許背景圖片可以在border中繪製,但是background-origin屬性規定背景圖片開始繪製的位置是內容區域,當然在border中就不顯示背景圖片。

相關文章