CSS中的背景樣式可以通過多種方式組合實現(xiàn),本文將為大家介紹幾種比較常用的背景組合方式。
/* 方式一:使用多個背景圖 */ background-image: url(bg1.png), url(bg2.png); background-position: bottom right, top left; background-repeat: no-repeat, repeat-x; background-size: 50%, cover; /* 方式二:使用背景顏色和背景圖組合 */ background-color: #f5f5f5; background-image: url(bg.png); background-repeat: no-repeat; background-position: center center; /* 方式三:使用漸變背景 */ background: linear-gradient(to bottom, #f5f5f5, #fff); /* 方式四:使用透明背景 */ background-color: rgba(0,0,0, 0.5);
以上幾種方式可以根據(jù)需要進行靈活組合,實現(xiàn)更加絢麗多彩的頁面效果。希望本文對大家有所幫助。