background-clip屬性的通俗做用就是指定元素背景所在的區域,有四種取值html
一、border-boxweb
border-box是默認值,表示元素的背景從border區域(包括border)之內開始保留背景。chrome
簡單代碼以下:瀏覽器
<!doctype html> <html> <head> <style> *{margin:0;padding:0;} .box{width:380px;height:280px;margin:100px auto;background:url("1.jpg") no-repeat -5px;padding:5px;border:5px dotted #000;
background-clip:border-box;} </style> </head> <body> <div class="box"></div> </body> </html>
效果以下:url
從上圖咱們能夠看出,元素背景默認是存在於邊框及之內的區域,可是不知道爲何加背景圖片,不能所有覆蓋;而背景顏色則沒沒這個問題。spa
二、padding-box3d
padding-box表示元素的背景從padding區域(包括padding)之內開始保留。htm
簡單代碼以下:blog
<!doctype html> <html> <head> <style> *{margin:0;padding:0;} .box{width:380px;height:280px;margin:100px auto;background:url("1.jpg") no-repeat -5px;padding:5px;border:5px dotted #000;
background-clip:padding-box;} </style> </head> <body> <div class="box"></div> </body> </html>
效果以下:圖片
從上圖咱們能夠看出背景圖片存在於padding及之內區域。
三、content-box
content-box表示元素的背景從內容區域之內開始保留。
簡單代碼以下:
<!doctype html> <html> <head> <style> *{margin:0;padding:0;} .box{width:380px;height:280px;margin:100px auto;background:url("1.jpg") no-repeat -5px;padding:5px;border:5px dotted #000;
background-clip:content-box;} </style> </head> <body> <div class="box"></div> </body> </html>
效果以下:
從上圖咱們能夠看出背景圖片存在於內容區域之內。
四、text
content-box表示元素的背景保留在前景內容中(文字),和其形狀大小相同,目前僅支持chrome瀏覽器
簡單代碼以下:
<!doctype html> <html> <head> <style> *{margin:0;padding:0;} .box{width:380px;height:280px;margin:100px auto;background:red;padding:5px;border:5px dotted #000;
font-size:100px;font-weight;bold;-webkit-background-clip:text;-webkit-text-fill-color:transparent;} </style> </head> <body> <div class="box">你 好 你 好</div> </body> </html>
效果以下:
說明:目前值爲text時,兼容性極差,僅知道便可。