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>

原文地址:https://www.cnblogs.com/dylan-devop/p/7027887.html