css背景指的是CSS背景屬性,即background屬性,該屬性用於定義元素的背景效果,語法是「background:bg-color bg-image position/bg-size bg-repeat bg- origin bg-clip bg-attachment initial|inherit;”,其中各值之間用空格分隔,不分先後順序。
本教學操作環境:Windows10系統、CSS3版、DELL G3電腦
css背景什麼意思?
CSS 背景屬性用來定義元素的背景效果。
CSS 背景屬性有:
background-color background-image background-repeat background-attachment background-position
CSS background 屬性
背景縮寫屬性可以在一個宣告中設定所有的背景屬性。
可以設定的屬性分別是:background-color、background-position、background-size、background-repeat、background-origin、background-clip、background-attachment 和 background-image。
各值之間以空格分隔,不分先後順序。可以只有其中的某些值,例如 background:#FF0000 URL(smiley.gif); 是允許的。
語法
background:bg-color bg-image position/bg-size bg-repeat bg-origin bg-clip bg-attachment initial|inherit;
值
background-color 指定要使用的背景顏色;
background-position 指定背景圖像的位置;
background-size 指定背景圖片的大小;
background-repeat 指定如何重複背景圖像;
background-origin 指定背景圖像的定位區域;
#background- clip 指定背景圖像的繪畫區域;
background-attachment 設定背景圖像是否固定或隨著頁面的其餘部分滾動;
background-image 指定要使用的一個或多個背景圖像。
推薦學習:《css影片教學》
以上是css背景什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!