首页 > 代码库 > Html和css总结 -2016.9.14

Html和css总结 -2016.9.14

  1. 可以自己建一个大的容器,在容器里加背景图片,但是在需显示图片的地方应该背景改为透明的(background:transparent);对于背景图片可以指定为不能动(background-attachment:fixed);背景图片不重复(background-repeat:no-repeat);背景图片伸展开:(background-size:cover);背景图片的位置居中:(background-position:center center);但是对于显示的类需要有统一的感觉(或者说是让文字显示的更加透明,图片更加蒙):background:rgba(0,0,0,0.1)[其中蒙的效果递增随着后面小数的递增而递增];
  2. 类名:first-child{background:rgba(0,0,0,0.04}类名:nth-child(2){ background:rgba( 0,0,0,0.04};依次类推,使模块颜色逐次加深,有区分和强调效果;
  3. letter-spacing: 1px;使字之间的间距为1px;

 

Html和css总结 -2016.9.14