Ps 初學者教程,如何更改照片中的天空顏色?
阿新 • • 發佈:2021-10-29
3.css背景
css背景屬性用於定義元素的背景效果。
背景屬性包括:
(1)background-color
(2)background-image
(3)background-repeat
(4)background-attachment
(5)background-position
(1)background-color:指定義元素的背景顏色
例:
body{
background-color:red;
}
(2)background-image:指定義元素的背景圖片
例:
body{
background-image:url("tupian.jpg")
}
(3)background-repeat:背景重複
background-repeat:no-repeat;屬性還可指定只顯示一次背景影象:
例:
body {
background-image: url("tree.png");
background-repeat: no-repeat;
}
(4)background-attachment:背景圖片是滾動還是附著
例:固定
body { background-image: url("tree.png"); background-repeat: no-repeat; background-position: right top; background-attachment: fixed; }
(5)background-position:背景影象的定位
例:
body {
background-image: url("tree.png");
background-repeat: no-repeat;
background-position: right top;
}