#css background 屬性#css
標籤訂義及使用說明bash
背景縮寫屬性能夠在一個聲明中設置全部的背景屬性。微信
能夠設置的屬性分別是:dom
實例url
在一個div元素中設置多個背景圖像:spa
<body>
<div class="dome"></div>
</body>
複製代碼
css3d
.dome{
width: 500px;
height: 500px;
margin: 0 auto;
background: #cccccc url(images/history.jpg) no-repeat ;
}
複製代碼
圖爲:code
##background-position 屬性##cdn
如何定位background-image:blog
<body>
<div class="dome"></div>
</body>
複製代碼
css:
.dome{
width: 500px;
height: 500px;
margin: 0 auto;
background: #cccccc url(images/history.jpg) no-repeat ;
background-position: 25px 100px;
}
複製代碼
圖爲:
##標籤訂義及使用說明##
background-position屬性設置背景圖像的起始位置。
屬性值
left top
left center
left bottom
right top
right center
right bottom
center top
center center
center bottom
x% y% 第一個值是水平位置,第二個值是垂直。左上角是0%0%。右下角是100%100% 。默認值爲:0%0%
指定背景圖像的大小:
<body>
<div class="dome"></div>
</body>
複製代碼
css:
.dome{
width: 500px;
height: 500px;
margin: 0 auto;
background: #cccccc url(images/history.jpg) no-repeat ;
background-position: 50% 50%;
background-size: 250px 250px;
}
複製代碼
圖爲:
標籤訂義及使用說明
background-size屬性指定背景圖片大小。
語法
background-size: length|percentage|cover|contain;
length 設置背景圖片高度和寬度。第一個值設置寬度,第二個值設置的高度。若是隻給出一個值,第二個是設置爲 auto(自動)
percentage 將計算相對於背景定位區域的百分比。第一個值設置寬度,第二個值設置的高度。若是隻給出一個值,第二個是設置爲"auto(自動)"
cover 此時會保持圖像的縱橫比並將圖像縮放成將徹底覆蓋背景定位區域的最小大小。
contain 此時會保持圖像的縱橫比並將圖像縮放成將適合背景定位區域的最大大小。
若是,您認爲閱讀這篇博客讓你有些收穫,請您關注一下。感謝您的支持,若有不足,請多指教。
聯繫方式:
微信號:bsl521921