css3新增背景
背景线性渐变
background: linear-gradient();
第一个参数: (角度 或者是一个线性的方向)可选的 默认的是(to bottom) 旋转的方向是顺时针的
第二个参数: 开始颜色 color 或者是百分比 或者是长度
第三个参数: 结束颜色
背景平铺
repeating-linear-gradient
径向渐变
background: radial-gradient()
圆形(椭圆) 半径大小 圆心位置 color color+
圆或者椭圆 关键字 圆心位置 color color+
关键字:
extent-keyword=closest-side|farthest-side|closest-corner|farthest-corner
background: radial-gradient(closest-side,red,blue);离圆心最近的那条边 圆要经过这4个边
background: radial-gradient(circle,red,blue);
当一个圆没有设置大小的时候是以是最远的角 farthest-corner为准
background: radial-gradient(circle 100px,red,blue);
background: radial-gradient(red,blue);
当椭圆的相对位置是对于原点(0,0)来说,且椭圆经过farthest-corner这个点,那么椭圆x轴半径和y轴半径的比例等于圆心到closest-side的距离
background: radial-gradient(100px 50px,red,blue);不关心形状,只关心大小
background: radial-gradient(100px 50px at 0 0,red,blue);设置圆心的位置
背景平铺
background: repeating-radial-gradient(red 10px,blue 20px);
Background-origin
Box=border-box|padding-box|content-box背景图片的坐标
background-origin: padding-box;默认
background-origin: border-box;边框的位置
background-origin: content-box;内容的位置
背景裁剪
background-clip: border-box;默认值 content-box padding-box
Background-size:大小|| 百分比|| cover|| contain
background-size: cover;尽可能大,让图片撑满整个容器
background-size: contain;尽可能大,宽度和高度不能超过容器的宽高