css 背景样式学习

背景样式主要有5个属性:

1. background-color 背景颜色

2.background-img   背景图像

3.background-repeat 背景图像如何重复(no-repeat repeat repeat-x repeat-y inherit)

4.background-position 定位背景图像位置(top right bottom left center)

5.background-attachment 背景图片的固定或滚动(scroll fixed inherit)

<style>

  body {

      background-color:blue;

      background-img:url('body.jpg');

                 background-repeat:repeat;

                 background-position:center;

                 backgroun-attachment:fixed;

</style>

posted @ 2017-06-16 15:48  归壹  阅读(139)  评论(0编辑  收藏  举报