CSS3背景設(shè)置詳解
CSS3提供了豐富的背景設(shè)置選項(xiàng),可以輕松實(shí)現(xiàn)各種背景效果,以下是一些常見的背景設(shè)置方法:
1、設(shè)置背景顏色
在CSS3中,可以使用background-color
屬性來設(shè)置背景顏色,將背景顏色設(shè)置為紅色:
body { background-color: red; }
2、設(shè)置背景圖像
可以使用background-image
屬性來設(shè)置背景圖像,將背景圖像設(shè)置為一張圖片:
body { background-image: url('image.jpg'); }
3、設(shè)置背景圖像大小
可以使用background-size
屬性來設(shè)置背景圖像的大小,將背景圖像的大小設(shè)置為100%:
body { background-image: url('image.jpg'); background-size: 100%; }
4、設(shè)置背景圖像位置
可以使用background-position
屬性來設(shè)置背景圖像的位置,將背景圖像的位置設(shè)置為居中:
body { background-image: url('image.jpg'); background-position: center; }
5、設(shè)置背景圖像重復(fù)
可以使用background-repeat
屬性來設(shè)置背景圖像的重復(fù)方式,將背景圖像設(shè)置為不重復(fù):
body { background-image: url('image.jpg'); background-repeat: no-repeat; }
6、設(shè)置背景圖像附件區(qū)域
可以使用background-attachment
屬性來設(shè)置背景圖像的附件區(qū)域,將背景圖像的附件區(qū)域設(shè)置為固定:
body { background-image: url('image.jpg'); background-attachment: fixed; }