常用的CSS中背景background提示

來源:互聯網
上載者:User

css教程  說明 
background-image:url("圖片的網址");  背景圖 
background: url(" 圖片的網址 ");  背景  
background-color:#色碼;  背景色彩  

Exp: 

 代碼如下 複製代碼
background-image:url(背景圖案.jpg,gif,bmp); 
background-color:#FFFFFF;  
background-color : transparent;    <--設定背景為透明色 



--------------------------------------------------------------------------------

background-repeat 改變背景圖片的重複並排的設定 

css
 說明 
repeat  背景圖片並排  
repeat-x  背景圖片以X方向 並排  
repeat-y  背景圖片以Y方向 並排  
no-repeat  背景圖片不 以並排的方式處理  

 代碼如下 複製代碼
background-image:url("yun_qi_img/xx.gif"); 
background-repeat:no-repeat; 
以yun_qi_img/xx.gif這張圖片為背景,當圖片大小不夠的時候,不並排重複

background-attachment是否固定圖片位置 

css
 說明 
scroll  拉動捲軸時,背景圖片會跟著移動(預設值)  
fixed  拉動捲軸時,背景圖片不會跟著移動  

Exp: 

 代碼如下 複製代碼
background-image:url("yun_qi_img/xx.gif"); 
background-repeat:no-repeat; 
background-attachment:fixed; 
以yun_qi_img/xx.gif背景圖片不重複並列,且不隨捲軸移動 



--------------------------------------------------------------------------------

以長度定位background-position: x y 
使用百分比定位 background-position: x% y% 

css
 說明 
x%  往右移  
y%  往下移  
backgroud-position: 0% 0%; 左邊上方
backgroud-position: 0% 50%; 左邊中間
backgroud-position: 50% 0%; 中間上方
backgroud-position: 50% 50%; 正中間
backgroud-position:100% 0%; 右邊上方
backgroud-position: 0% 100%; 左邊下方
backgroud-position: 100% 50%; 右邊中間
backgroud-position: 50% 100%; 中間下方
backgroud-position: 100% 100%; 右邊下方

以關鍵字定位 
關鍵字  說明  
top  上 ( y = 0 )  
center  中 ( x = 50, y = 50 )  
bottom  下 ( y = 100 )  
left  左 ( x= 0 )  

Exp: 
background-position:center; 
圖片在指定背景中央X=50% Y=50%位置 
background-position: 200px 30px 

 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.