您好,登錄后才能下訂單哦!
這篇文章主要介紹“CSS3對背景圖片的裁剪及尺寸和位置設(shè)定方法”,在日常操作中,相信很多人在CSS3對背景圖片的裁剪及尺寸和位置設(shè)定方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”CSS3對背景圖片的裁剪及尺寸和位置設(shè)定方法”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
背景裁剪
CSS Code復(fù)制內(nèi)容到剪貼板
background-clip:border-box|padding-box|content-box|text
用于指定background是否包含content之外的border,padding。默認(rèn)值為border-box,即background從包含border在內(nèi)的地方開始渲染,IE的默認(rèn)表現(xiàn)也等同于border-box
背景從border(即包括border在內(nèi))開始繪制(渲染)
CSS Code復(fù)制內(nèi)容到剪貼板
#background-clip-border{
-moz-background-clip:border-box; /* For Firefox */
-webkit-background-clip:border-box; /* For Chrome, Safari */
-o-background-clip:border-box; /* For Opera */
-ms-background-clip:border-box; /* For IE */
background-clip:border-box; /* For Future */
}
背景從padding(即包括padding在內(nèi))開始繪制:
CSS Code復(fù)制內(nèi)容到剪貼板
#background-clip-padding{
-moz-background-clip:padding-box; /* For Firefox */
-webkit-background-clip:padding-box; /* For Chrome, Safari */
-o-background-clip:padding-box; /* For Opera */
-ms-background-clip:padding-box; /* For IE */
background-clip:padding-box; /* For Future */
}
背景從content(即內(nèi)容部分)開始繪制:
CSS Code復(fù)制內(nèi)容到剪貼板
#background-clip-content{
-moz-background-clip:content-box; /* For Firefox */
-webkit-background-clip:content-box; /* For Chrome, Safari */
-o-background-clip:content-box; /* For Opera */
-ms-background-clip:content-box; /* For IE */
background-clip:content-box; /* For Future */
}
將背景裁剪作為文本的填充色:
CSS Code復(fù)制內(nèi)容到剪貼板
/* 如果你的瀏覽器支持text值,你將會看到本段文字的顏色直接使用了背景顏色:紅色,且背景將被裁剪掉不再顯示 */
#background-clip-text{
background-color:#f00;
-webkit-text-fill-color:transparent;
-webkit-background-clip:text; /* For Chrome, Safari */
background-clip:text; /* For Future */
}
背景圖片位置
CSS Code復(fù)制內(nèi)容到剪貼板
background-origin:border-box|padding-box|content-box
以border(即包括border)為原點計算背景圖的background-position:
CSS Code復(fù)制內(nèi)容到剪貼板
#background-origin-border{
-moz-background-origin:border-box; /* For Firefox */
-webkit-background-origin:border-box; /* For Chrome, Safari */
-o-background-origin:border-box; /* For Opera */
-ms-background-origin:border-box; /* For IE */
background-origin:border-box; /* For Future */
}
以padding(即包括padding)為原點計算背景圖的background-position:
CSS Code復(fù)制內(nèi)容到剪貼板
#background-origin-padding{
-moz-background-origin:padding-box; /* For Firefox */
-webkit-background-origin:padding-box; /* For Chrome, Safari */
-o-background-origin:padding-box; /* For Opera */
-ms-background-origin:padding-box; /* For IE */
background-origin:padding-box; /* For Future */
}
以content(即從content開始)為原點計算背景圖的background-position:
CSS Code復(fù)制內(nèi)容到剪貼板
#background-origin-content{
-moz-background-origin:content-box; /* For Firefox */
-webkit-background-origin:content-box; /* For Chrome, Safari */
-o-background-origin:content-box; /* For Opera */
-ms-background-origin:content-box; /* For IE */
background-origin:content-box; /* For Future */
}
圖片背景尺寸
CSS Code復(fù)制內(nèi)容到剪貼板
background-size:[length|percentage|auto]{1,2}|cover|contain
用于設(shè)置背景圖片的大小,有2個可選值,第1個值用于指定背景圖的width,第2個值用于指定背景圖的height,如果只指定1個值得,則第2個值默認(rèn)為auto
數(shù)值表示方式:
CSS Code復(fù)制內(nèi)容到剪貼板
#background-size{
background-size:300px 100px;
}
百分比表示方式:
CSS Code復(fù)制內(nèi)容到剪貼板
#background-size2{
background-size:40% 80%;
}
等比擴展圖片來填滿元素,即cover值:
CSS Code復(fù)制內(nèi)容到剪貼板
#background-size3{
background-size:cover;
}
等比縮小圖片來適應(yīng)元素的尺寸,即contain值:
CSS Code復(fù)制內(nèi)容到剪貼板
#background-size4{
background-size:contain;
}
以圖片自身大小來填充元素,即auto值:
CSS Code復(fù)制內(nèi)容到剪貼板
#background-size5{
background-size:auto;
}
到此,關(guān)于“CSS3對背景圖片的裁剪及尺寸和位置設(shè)定方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。