標籤:高度 移動 bsp 效果 ges 設定 htm sharp blog
css背景是個很有意思的東西,可設定
背景色:background-color
背景圖:backgoround-image
背景圖顯示相對位置:background-position,正數圖片往右下移,負數圖片向左上移
背景圖片樣本:(每張圖片高度50px,空白處50px)
樣本:
1、背景色:
css檔案代碼
.c1{ width: 100%; height: 50px; background-color: #425a66;}
html代碼,跟下面的所有情況一樣,後面就不再寫了
<body> <div class="c1"></div></body>
2、背景圖(不重複)
css代碼
.c1{ width: 100%; height: 500px; background-color: #425a66; background-image: url(quantu.png); background-repeat: no-repeat;
3、背景圖(重複)
css代碼
.c1{ width: 100%; height: 500px; background-color: #425a66; background-image: url(quantu.png);}
4、顯示背景圖相對位置
css代碼(0:圖片在x軸不動,-300圖片在y軸向上移動300px,正好顯示第4張圖片)
由於我們的
height: 50px; 與圖片的高度相同
所以正好顯示了一張小圖片。
.c1{ width: 100%; height: 50px; background-color: #425a66; background-image: url(quantu.png); background-repeat: no-repeat; background-position: 0 -300px;}
CSS之background屬性