背景与边框
一、background 背景
背景颜色 background-color:red; 简写background:red;
背景图片 background-image:url(“路径”);简写 background:url();
背景图片平铺:
1. 平铺浏览器默认就平铺
2. 不平铺 no-repeat
3. 平铺x轴或y轴 background-repeat:repeat-x;
背景大小:background-size:;
背景位置background-position 也是坐标轴 向下为正 向右为正数
背景简写:body{background:颜色 图片 平铺 位置;}
二、border 边框
边框颜色 border-color:;
边框粗细 border-width:;
边框样式 border-style:solid(实线)/dashed(虚线);
边框简写 border:颜色 粗细 样式;
边框圆角 border-radius 后面的值是具体的数字或百分比