C3-背景颜色及背景图片

  • 背景颜色---->background-color

颜色:transparent(透明色)/ 其他颜色

e.g:background-color: pink;

  • 背景图片---->background-image

e.g:background-image: url(images/01.jpg);

效果展示:

  注:背景图片会默认平铺到整个盒子中

        C3-背景颜色及背景图片

  • 背景平铺---->background-repeat

参数:repeat-->背景平铺

      no-repeat-->背景不平铺

      repeat-x-->背景沿x轴横向平铺

      Repeat-y-->背景沿y轴纵向平铺

效果展示:

1.background-repeat: no-repeat;

              C3-背景颜色及背景图片

2.background-repeat: repeat;  

              C3-背景颜色及背景图片

3.background-repeat: repeat-x;

              C3-背景颜色及背景图片

4.background-repeat: repeat-y;

              C3-背景颜色及背景图片

注:背景颜色和背景图片可同时添加

  • 背景图片位置---->background-position:x y;

x y:可以是方位名词(top,center ,bottom,left,right);也可以是精确单位(10px,百分数)

e.g:background-position: top right;

效果展示:

                    C3-背景颜色及背景图片

background-position: 15px 30px;

效果展示:

                     C3-背景颜色及背景图片

  • 背景固定---->background-attachment

参数:scroll-->背景图片随内容滚动(系统默认)

      fixed-->背景图片固定

  • 背景属性的复合写法:

background:背景颜色 背景图片 背景平铺 背景图像滚动 图片位置;

e.g:background:rgb(206, 245, 250) url(images/03.png) no-repeat scroll center bottom;

效果展示:

                 C3-背景颜色及背景图片

  • 背景颜色半透明:background:rgba(o,o,o,0.4);

a表示alpha透明度,取值范围在0-1之间

e.g:background: rgba(32, 194, 216, 0.3);

上一篇:#线性dp,排列组合#洛谷 2476 [SCOI2008]着色方案


下一篇:super之mro列表牵引出c3算法